Hi, how can I fix this – http://screencast.com/t/hsSj9h1qQI?
I want the menu to always be on the right side and the logo on the left side, regardless of screen size.
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:
#advanced_menu_toggle, #advanced_menu_hide {
right: 0;
left: auto;
}
@media only screen and (max-width: 767px) {
.responsive .logo img {
float: left;
}}
Best regards,
Yigit
Thanks! how can I separate the cart button from the menu button so they won’t overlap on the right side of the menu – http://screencast.com/t/F2zTwtjcoBh?
Hi,
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: 989px) and (min-width: 768px) {
.responsive.html_mobile_menu_tablet.html_visible_cart #top .cart_dropdown {
right: 100px;
}}
Best regards,
Yigit
Awesome. Thanks!