Css mobile for header pic welcome page
-
My header image on the welcome page shows up really small on a mobile device. Please help.
The blog I need help with is: (visible only to logged in users)
-
Hi there!
Your theme is designed to adjust the size of the header for different sized screens using a CSS trick called a Media Query.
Try this CSS, it increase the size on the two smaller screen settings the theme uses:
.hero { padding: 60px 0; } @media screen and (min-width: 600px) { .hero { padding: 60px 0; } } -
-
- The topic ‘Css mobile for header pic welcome page’ is closed to new replies.