Hi, how do I reduce the header size on mobile?
I tried reducing logo size and header size but i was left with the weird white line overlapping the content, so it didn’t really work. Here’s what i used:
@media only screen and (max-width: 767px) {
.responsive #top #header {
height: 80px !important;
line-height: 80px !important;
}
@media only screen and (max-width: 767px) {
.responsive #top .logo {
height: 80px !important;
}
}
Hey mepho!
Your header is currently 80px and i cannot see a weird white line. Have you figured it out? :)
Cheers!
Yigit
Hey Yigit!
Sorry, 80px was just an example. Here’s what happens if i set all values to 60px – screenshot
This helps to remove the border, but I just want to move it up, not get rid of it completely.
#header_main {
border-bottom: none;
}
Hi!
Please add following code to Quick CSS as well
@media only screen and (max-width: 580px) {
.container.av-logo-container {
max-height: 59px;
}}
Best regards,
Yigit
Thank you, that did it!