- This topic has 5 replies, 2 voices, and was last updated 5 years, 1 month ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.
Hi,
I would like to adjust the menu of the mobile version of my website. I would like to:
– Remove the main menu arrow in the mobile version
– Add the side bar alt only in the mobile version. So I don’t want it to be visible in the desktop version of the website.
Is this possible?
Kind regards.
Hi @postfromparadisegmail -com
Please share your website URL and we will check for the possible solutions.
Kind Regards
Hi @postfromparadisegmail -com
Please navigate to Dashboard > Appearance > Customize > Additional CSS and insert the CSS snippet below:
.mobile-menu-btn {
display: none;
}
.main-nav-sidebar {
display: none;
}
@media screen and (max-width: 979px) {
.main-nav-sidebar {
display: block;
}
}
Kind Regards
Tank you so much!!
I’ve another question, if you don’t mind.
On the mobile version our logo is very small. On the desktop version it’s perfect.
Is there a way to fix this?
Kind regards.
Hi @postfromparadisegmail -com
Please navigate to Dashboard > Appearance > Customize > Aditional CSS and following snippet:
@media screen and (max-width: 880px) {
.logo-img {
max-width: 580px !important;
}
}
Kind Regards