Next/Prev arrow not showing
-
Hi!
I’m using product carousal and I have activated prev/next buttons. But, they show only when you hover over products. Is there any way to show prev/next buttons without hovering?
https://prnt.sc/qrginf
Thanks
Hello,
To make the prev/next buttons on the products carousel visible without hovering you need to add the following code in Page Custom CSS area.
.owl-carousel .owl-nav>div {
visibility: visible;
opacity: 1;
transform: translateY(0);
pointer-events: visible;
}
Screenshot for Clarification: https://ibb.co/L8VKnLx
This will surely display those arrows all the time without hovering.
Best Regards.