Hi, as you can see here – http://screencast.com/t/tKLULROji – the mobile menu is not aligned to the right. How can I make sure that in all mobile screens (smartphones & tablets) the logo will show on the left and the mobile menu will show on the right?
Thanks.
Hey DROR!
Please add following code to Quick CSS
@media only screen and (max-width: 989px) {
.html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide {
left: auto !important;
right: 0 !important;
}}
Best regards,
Yigit
That worked but now the menu and the woocommerce cart button are overlapping – http://screencast.com/t/FbBrVbKs. how can I fix that?
Hey!
Please add following code to Quick CSS as well
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive.html_mobile_menu_tablet.html_visible_cart #top .cart_dropdown {
right: 13%;
}}
@media only screen and (max-width: 767px) {
.responsive #top .cart_dropdown {
right: 7.5%;
}}
Regards,
Yigit
Great. Thanks!