Hi,
5. Try to add following custom CSS code to make your slider arrows always visible.
.owl-carousel .owl-nav>div {
transform: translateY(0);
-webkit-transform: translateY(0);
opacity: 1;
visibility: visible;
pointer-events: visible;
}
6. Try to add following custom CSS code to fix your tabled single page layout.
@media (max-width: 768px) {
body .product-image-summary-wrap>.col-sm-9,
body .product-image-summary-wrap>.col-sm-3 {
right: auto;
left: auto;
}
}
Since we don’t have access to the backend view of your homepage we cannot see which exactly block is missing on the page.
Regards