This topic has 4 replies, 2 voices, and was last updated 10 years, 3 months ago ago by Jack Richardson
Hi,
We have a few questions on product slider modification. Our website http://sharmgroup.by/
1. How to get rif off product name and a cproduct category which are below the product image?
2. How to make slider arrows smaller and a bit cloder to images?
Thank you in advance.
Hello,
To hide product name and product category on products slider add the following code into the custom.css:
.slide-item .product .product-name, .slide-item .product .products-page-cats {
display: none;
}
Add this code to custom.css to adjust your arrows position:
.slider-container .owl-prevv {
left: -50px;
}
.slider-container .owl-next {
right: -30px;
}
Here is a video tutorial how to create custom.css: https://www.youtube.com/watch?v=Qok2zRedRMY&feature=youtu.be.
Regards,
Jack Richardson
it worked. Thnks.
One more thing left – how to make the arrows size smaller?
Hello,
You can add the following code to the custom.css and change font-size value to your desired:
.slider-container .owl-prev:before, .slider-container .slider-prev:before, .slider-container .owl-next:before, .slider-container .slider-next:before {
font-size: 60px;
}
Regards,
Jack Richardson
You must be logged in to reply to this topic.Log in/Sign up