Dear Kriesi.
I am using this demo:
Is there any way to reduce (slim) black area with logo and burger menu icon in mobile mode (i.e. 360×640)?
While resizing browser width I have noticed that somethimes below logo and a burger menu icon appears additional (full width) dark area. Is this a bug or how do I remove it?
Hey burgola,
Can you give us a screenshot showing the additional dark area? I could not seem to see it on my end.
Best regards,
Nikko
on the left you can see additional dark gray area, in the middle logo is not in the middle, and on the right everything is fine (but i want to reduce black area height).
Hi,
Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) {
.home .avia-builder-el-0 .slideshow_caption {
padding-top: 0;
}
}
Best regards,
Rikard
Rikard thanks, there is no more additional area, logo is always centered in black area.
The main question remains: how to slim black main header height for 20%.
I found solution below in forum, but in a mobile mode (360×640) logo is positioned outside black area.
#header {
height: 40px;
}
.container.av-logo-container, .container.av-logo-container a, .container.av-logo-container a img {
height: 40px !important;
line-height: 40px !important;
max-height: 40px !important;
}
Hi burgola,
Can you try to replace this code:
#header {
height: 40px;
}
to:
.responsive #top #wrap_all #header {
height: 40px !important;
}
Then add this as well:
.responsive #top .logo {
display: block !important;
}
And make sure to wrap them inside the media query, just like what Rikard posted.
Best regards,
Nikko