Close

Hide ribbons in JCarousel

linkxperts
9 years ago
#8014 Quote
Avatar
  • 8
Hi,
Does anyone know how to hide the ribbons in the JCarousel?
Regards,
Marcel
Boyko
9 years ago
#8016 Quote
Avatar
  • Moderator
  • 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
9 years ago
#8017 Quote
Avatar
  • 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;
        }