This topic has 6 replies, 2 voices, and was last updated 5 months, 4 weeks ago ago by Luca Rossi
Problem with tablet css modes when tablet turns from portrait to landscape
Dear @fyshlas,
We hope this message finds you well. To address the issue you are experiencing, we recommend implementing the following custom CSS:
@media (min-width: 768px) and (max-width: 960px){
body .navbar-right .aws-container {
display: none !important;
}
}
Please add this code to your website’s CSS file. If you require any further assistance or have additional questions, please do not hesitate to contact us.
Best Regards,
The 8Theme Team
Thank you this worked like a charm.
Hi @fyshlas,
Please try with this custom CSS:
@media (max-width: 480px){
.shopping-container .shopping-cart-widget {
padding-top: 10px;
}
.fixed-header .shopping-container .shopping-cart-widget {
padding-top: 12px;
}
}
Let us know how it goes!
Nope this didnt work unfortunately
Hi @fyshlas,
You mentioned the screen sizes 800×480 and 480×800 but you checked in 960×600 and 600×960 screensizes.
Please also adde this custom CSS code:
@media (min-width: 768px) and (max-width: 960px){
.fixed-header .shopping-container .shopping-cart-widget {
padding-top: 7px;
}
}
Hope it helps!
You must be logged in to reply to this topic.Log in/Sign up