Hello kriesi team,
First of all thanks for the great theme, keep up the good work!
Second, I have two small problems on iPhone 5s device, maybe there is some easy fix..
1) Shopping cart on home page is always showing, even if she is empty. Also the shopping cart goes over the logo (but I check on one android device, the shopping cart is not going over the logo)
2) There where is copyright text, the text not fit one the screen
Hi frukts,
1. Please try the following in Quick CSS under Enfold–>General Styling to align the:
@media only screen and (max-width: 767px) {
strong.logo img {
max-height: 80px !important;
}
}
Not sure if you want to hide the cart though?
2. I can’t see the issue on my end, could you please send a screenshot of what you are seeing on your end?
Regards,
Rikard
Didn’t see any changes when I add this code, I remove it..
Hey!
1.) Please remove browser cache or hard refresh the page after you add the code suggested above. You can also try this:
@media only screen and (max-width: 480px) {
.responsive .logo img {
max-height: 50px !important;
}
}
Adjust the max height value if necessary.
2.) Add this code inside the media query above.
#socket .copyright {
float: none;
}
End code should be:
@media only screen and (max-width: 480px) {
.responsive .logo img {
max-height: 50px !important;
}
#socket .copyright {
float: none;
}
}
Cheers!
Ismael
Thank you Ismael, with this code it worked, I only change 50px to 60px.
Is there also some easy fix for shopping cart, it still showing, even if she is empty.
Hey!
You can try this:
@media only screen and (max-width: 767px) {
.responsive #top .cart_dropdown {
right: -100px !important;
}
.responsive.html_visible_cart #top .cart_dropdown {
right: 7.5% !important;
}
}
Regards,
Ismael
Thanks Ismael! You can close this topic.