Hi
If you go to this page it isn’t properly responsive it shrinks the columns
http://www.jasminesboutique.co.uk/new-arrivals/
If you go to this page it works far better
http://www.jasminesboutique.co.uk/product-category/ready-to-wear/
How can I make the first work like the second?
Hi codecreative!
You have following code in Quick CSS field
.page-id-2078 div .products .product {
width: 32.6%!important;
}
please change it to
@media only screen and (min-width: 990px) {
.page-id-2078 div .products .product {
width: 32.6%!important;
}}
Cheers!
Yigit
Thank you Yigit. Your assistance has resolved this issue. I can’t say enough how much I appreciate your continued support.
For some reason since updating yesterday to the latest version on enfold. When viewing the site in mobile the shopping cart is sitting in the middle of the site over lapping the logo. Is there something in version 3.0.8 making this happen? Can I have it go back to the far right hand side?
Hey!
Mobile menu seems to be sitting on logo because of following code
#advanced_menu_toggle, #advanced_menu_hide {
left: 30%!important;
}
Please remove it :)
Regards,
Yigit
Hi great thank you yigit
that’s almost fixed it but it still floats to the left and the cart appears off the left ill take a deeper look into it but can you advice anything else
Hey!
This is how it looks on my end – http://imgur.com/a/bdSkq
You can see the issue on portrait mode and following code should fix it
@media only screen and (max-width: 480px) {
.responsive #top .cart_dropdown {
margin: 5px 50px 0 0;
}}
If it looks different on your end, please post a screenshot and show the issue
Cheers!
Yigit