This topic has 14 replies, 2 voices, and was last updated 4 years, 5 months ago ago by Rose Tyler
how can i go about increasing font size in attributes filter?
Hello,
Add the next code in Theme Options > Custom CSS
.widget_layered_nav ul li a {
font-size: 15px;
line-height: 1.1;
padding: 3px 3px 3px 10px;
}
Regards
ok work great!
it is possible in page https://www.vetriera12.it/negozio/ hide the button "<Return to Previous Page"
Thanks
.page-heading .back-to {
display: none;
}
Regards
thanks work great.
I have another question it is possible change “breadcrumbs” with “back button”
Hi,
Describe the desired result in more detail.
Regards
hide breadcrumbs
Try to use the next custom CSS code
.single-product .woocommerce-breadcrumb {
display: none;
}
.single-product .page-heading .back-to {
display: block;
right: 50% !important;
bottom: -23px !important;
top: auto !important;
transform: translateX(50%);
}
Regards
when I insert a product in upsell it does not display correctly on the product page. You can understand from the photo I have attached.
Please provide URL of the product and temporary FTP access also.
Regards
for upsell i solved. But i have other problem for wishlist icon.
This icon is not centered you see image in attachment
Hello,
Try to add the next code in Theme Options > Custom CSS:
.wishlist-btn-container.with-styles .single_add_to_wishlist {
display: inline-flex;
align-items: center;
justify-content: center;
}
.single-product .yith-wcwl-add-button > a i {
display: none;
}
.wishlist-btn-container.with-styles .single_add_to_wishlist:after {
display: none;
}
Regards
work good thanks
You’re welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up