Hi there
Is there anyway to move the burger menu when on a mobile to the far right without changing the look of the desktop menu? At the moment on a mobile the burger menu goes quite far over the logo.
Hey whitepandaltd,
Add this to quick css:
@media only screen and (max-width: 767px){
.responsive.html_bottom_nav_header #top #menu-item-shop.cart_dropdown {
right: -1px!important;
}
.responsive.html_bottom_nav_header.html_cart_at_menu #top #wrap_all .main_menu {
right: 10px!important;
}}
Best regards,
Jordan Shannon
Thanks Jordan
This is almost right but im getting over lay on the shopping cart icon. I have tried changing the numbers but cant get it correct for both portrait and landscape on a mobile. Landscape. If I get it correct for portrait on landscape the social icons are overlapped on the shopping cart.
Hi,
Try adding and (orientation: portrait) & and (orientation: landscape) to your media queries, this will allow you to set different values depending on the orientation, for example:
@media only screen and (max-width: 767px) and (orientation: landscape) {
rule {
something: here;
}
}
@media only screen and (max-width: 767px) and (orientation: portrait) {
rule {
something: here;
}
}
Best regards,
Mike