This topic has 3 replies, 2 voices, and was last updated 4 years, 5 months ago ago by Rose Tyler
I’m using WooPress Header style #8. On mobile the cart icon overlaps the price in the header. I would like to hide the price in the header on mobile.
is this option in the dashboard or is this custom?
Hello,
Add the next code in Theme Options > Custom CSS > Global csutom CSS:
@media only screen and (max-width: 1200px) {
.main-header .shopping-cart-widget .total {
display: none !important;
}
}
Regards
You must be logged in to reply to this topic.Log in/Sign up