Home Forums WoodMart support forum Need some help Reply To: Need some help

#23053

Bogdan Donovan
Keymaster

Try to add the following code snippet to the Custom CSS area in Theme Settings to fix gallery navigation on the product page.

@media (min-width: 1200px) {

	.wrapper-boxed .single-product-page .woocommerce-product-gallery .owl-nav>div[class*=prev] {
		left: 0px;
	}
	
	.wrapper-boxed .single-product-page .woocommerce-product-gallery .owl-nav>div[class*=next] {
		right: 0px;
	}
}

Regards