This topic has 5 replies, 3 voices, and was last updated 3 years, 11 months ago ago by Olga Barlow
I would like to Change Font size of add to cart button in product loop in Tablet/Ipad version. Thank you
Url in private content
Hello,
Add the next code in Theme Options > Theme custom CSS > Global custom CSS:
@media only screen and (max-width: 992px) {
.products-loop .add_to_cart_button,
.products-slider .add_to_cart_button {
font-size: 0.75em;
}
}
Regards
Hi Rose.
Thank you very much. I don’t know why this code is not working when my iPad is displayed horizontally. Just works when the iPad is vertically or in mobile version. Thanks
Hello,
Replace the previous code with the code below
@media only screen and (max-width: 1024px) {
.products-loop .add_to_cart_button,
.products-slider .add_to_cart_button {
font-size: 0.75em;
padding: .91rem 1.2rem;
}
}
Regards
You must be logged in to reply to this topic.Log in/Sign up