Dear Kriesi,
How can I reduce the size of my website logo on smaller screen sizes?
On mobile devices my logo is too large in relation to the other page elements.
Also, on this website example below, a grey bar appears along the top of the screen on small screen sizes. It seems to be the page background colour I’ve set for my boxed layout and only appears on small screen sizes. How can I stop it from appearing?
Thanks, Richard
Hi Richard!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.responsive .logo img { max-height: 45%; top: 10px; }
Best regards,
Yigit
Thanks Yigit,
I tried this but it made the logo small even at full screen sizes?
Best w, Richard
Hi!
Can you please change the code to following one
@media only screen and (max-width: 580px) {
.responsive .logo img { max-height: 45%; top: 10px; }}
Regards,
Yigit
That’s great, thanks Yigit
Do you know how I can remove the grey bar that appears above the logo at small screen sizes?
Also, how can I reduce the spring below the logo at small sizes? There is too much space below the logo when it is smaller.
Best w, Richard
Hi!
You have following codes
.logo {
margin-top: 24px;
}
#header {
max-width: 100% !important;
padding-bottom: 30px;
}
Please change it to following
@media only screen and (min-width: 580px) {
.logo {
margin-top: 24px;
}
#header {
max-width: 100% !important;
padding-bottom: 30px;
}}
Regards,
Yigit
Hi there! I’m having the same issue, my mobile logo view is super tiny when in vertical and only marginally larger in horizontal view. How do i set a different size for the mobile view?
<arop
Hi supermario4,
Can you post a link to your site? so we can see how it looks and try to give you a solution.
Best regards,
Nikko