Home > database >  How to make image go below text for mobile
How to make image go below text for mobile

Time:11-11

How do I make the image go under the text in the mobile? And for the text to go on the left side, instead of being more on the right - if this makes sense :)

CSS (Image): Mobile

Thank you!

CodePudding user response:

To make a responsive design you can either go the bootstrap root or you can do the @media in the CSS. Take a look at this site which will point you in the right direction.

https://www.w3schools.com/cssref/css3_pr_mediaquery.asp

CodePudding user response:

I solved it! Basically I wrapped it up in a div and set display:none; if the device was on mobile. And I did the same thing for desktop!

  • Related