Themes
Plugins
Collections
Collections
Theme Collection
Plugin Collections
Promo Collection
Services
Services
Custom Development
PPC for Ecommerce
Support & Learning
Support & Learning
Documentation
Forums
Tickets
Blog
About Us
About Us
Testimonials
Live Stores
Contact us
Register
Log in
Shopping cart
(0)
You have no items in your shopping cart.
My Downloads
Register
Log in
Shopping cart
Close
Themes
Plugins
Collections
Collections
Theme Collection
Plugin Collections
Promo Collection
Services
Services
Custom Development
PPC for Ecommerce
Support & Learning
Support & Learning
Documentation
Forums
Tickets
Blog
About Us
About Us
Testimonials
Live Stores
Contact us
Menu
Personal menu
Hide ribbons in JCarousel
Home
Forums
Extensions
Nop Product Ribbons
Hide ribbons in JCarousel
Search
Advanced search
Reply
linkxperts
Posted:
10 years ago
#8014
Quote
Total Posts:
8
Hi,
Does anyone know how to hide the ribbons in the JCarousel?
Regards,
Marcel
Boyko
Posted:
10 years ago
#8016
Quote
Total Posts:
1570
linkxperts wrote:
Hi,
Does anyone know how to hide the ribbons in the JCarousel?
Regards,
Marcel
Hi Marcel,
You can hide them via css and display:none. All carousels have this class
nop-jcarousel
and the ribbons have a class
ribbon-wrapper
.
Regards,
Nop-Templates.com Team
linkxperts
Posted:
10 years ago
#8017
Quote
Total Posts:
8
Thanks!
I changed:
.products-carousel .product-ribbon {
-webkit-transform: translateZ(0); /* 1px movement on hover fix */
}
to:
.products-carousel .product-ribbon {
-webkit-transform: translateZ(0); /* 1px movement on hover fix */
display:none;
}