Hi, how can I move the logo on mobile to the left so it won’t overlap the menu icon?
Hey DROR,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .main_menu {
left: 0;
right: auto;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
That moved the menu to the left. How can I keep the menu on the right and only move the logo to the left?
Hi bakbek,
Do you mean you want the logo left/burger right set up for mobile?
Best regards,
Victoria
Yes, logo on the left and burger menu on the right.
Hi bakbek,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .main_menu {
left: auto;
right: 0;
}
.html_header_top #top .av_logo_right .logo {
left: 0;
float: left;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Thanks. how can I remove the top menu bar only from mobile?
Hi bakbek,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 479px) {
#header_meta {
display: none;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Thanks.