Header and text too close on a mobile device
-
Hi,
My site looks great on a desktop but on a mobile device, the header is too close to the blog titles.
Can a small gap be put in?
Thanks
The blog I need help with is: (visible only to logged in users)
-
Hi there, the .site-header CSS rule you have with the margin 0 is what is causing the issue on smaller screens. Let’s use a Media Query to add some margin below 800px in width, which it appears is the point it becomes an issue. Add this to the very bottom of your custom CSS.
@media screen and (max-width: 800px) { .site-header { margin-bottom: 40px; } } -
-
-
- The topic ‘Header and text too close on a mobile device’ is closed to new replies.