Header, mobile
-
Hi there, Do you know if there is a way to make the header and logo much smaller in the mobile only view? Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi there, let’s start by replacing this in your custom CSS,
.site-logo { max-width:275px }with the following Media Query which will let the logo go back to the original 150px max-width below 600px in screen/window width.
@media screen and (min-width: 600px) { .site-logo { max-width: 275px; } } -
-
- The topic ‘Header, mobile’ is closed to new replies.