hi,
At a certain point of screen size, the Cart button and the Menu button will get overlaid…
like this: http://screencast.com/t/8Kvlu1X7BUT
any fix?
Hey decode!
Please try adding following code to Quick CSS
.responsive #top .cart_dropdown {
right: 6%;
}
Regards,
Yigit
hi, Yigit
we tried, but the menu is gone after CSS code applied,
we also tried different number (6%) , but still fail to make it correctly positioned on both bigger and smaller screen.
Hi,
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
here you go, thank you :)
Hi,
The cart and menu button are not overlapping each other but on smaller screens they are overlapping the logo, try the following to fix that:
@media only screen and (max-width: 767px) {
.responsive .logo img {
max-height: 60px !important;
}
}
Best regards,
Rikard
thanks Rikard
I forgot to mention, you have to add an item to cart FIRST so the cart button shows up in the first place and when you adjust the browser window, you will see the overlapping (menu and cart).
hi,
any progress on this ??
Hi!
refuse from bumping into your own thread, as it pushes it behind in our queue and marks it as answered and then we can’t provide a faster reply to you.
right now you are using this code.
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive.html_mobile_menu_tablet.html_visible_cart #top .cart_dropdown {
right: 40px;
}}
Replace it by this code:
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive.html_mobile_menu_tablet.html_visible_cart #top .cart_dropdown {
right: 120px;
}}
and adjust right value as needed.
Cheers!
Andy