Hi, it seems that on smartphones the logo moved to the right and the menu is on the left and the cart button is blocking the logo – http://screencast.com/t/orvCeqoZxIpq
How can I make sure the logo stays on the left and the menu and cart button are on the right?
Thanks!
Hey DROR,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
@media only screen and (max-width: 767px) {
#advanced_menu_toggle {
left: auto;
right: 0;
}
.responsive #top .logo img, .responsive #top .logo {
float: left;
}
}
Best regards,
Yigit
Thanks!