Team:
I have two questions regarding the mobile presentation (smartphone) of my page:
https://snipboard.io/AScuF9.jpg
(i) the search icon is too low relative to the burger menu and also cuts into the content area – see screenshot (red arrow). How do I change that?
(ii) I’d like to have a bit more white space between the top header and the content area (green arrow), just like on the desktop display of my page.
Best and thanks a lot,
Magnus
Hi Magnus,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) {
#menu-item-search {
line-height: 60px;
}
#header_main {
padding-bottom: 20px;
}
}
Best regards,
Rikard
Thanks, that indeed added the desired space. But the burger and the search icon are still misaligned:
https://snipboard.io/aLQRJS.jpg
Thanks,
Magnus
Hi Magnus,
This code needs to work on big screens only and so needs to be wrapped in the media query:
.av-main-nav > li > a {
bottom: -35px;
position: relative;
}
like this:
@media only screen and (min-width:990px){
.av-main-nav > li > a {
bottom: -35px;
position: relative;
}
}
Best regards,
Victoria
Hi Victoria:
that last code does not change anything: burger and search icon are still misaligned:
https://snipboard.io/JOaKxz.jpg
Thanks,
Magnus
Hi Magnus,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
Victoria
Yes please – see private box! Magnus
Hi Magnus,
I added the code for you, please check.
Best regards,
Victoria
Excellent, this indeed solves it – thank you very much for the quick help over the weekend! Magnus
Hi Magnus,
Glad we could help :)
If you need further assistance please let us know.
Best regards,
Victoria