Support » Plugin: Product Video Gallery for Woocommerce » replace the small images with dots

  • Resolved nickbosch

    (@nickbosch)


    Is it possible to replace the small images in the slider with dots on mobile?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author NikHiL Gadhiya

    (@nikhilgadhiya)

    Hello,

    You can do using custom CSS. Please add this CSS in your site and check

    @media only screen and (max-width: 600px) {
        li.product_thumbnail_item.nslick-slide {
            text-align: center;
        }
        li.product_thumbnail_item.nslick-slide:after {
            content: "⚫";
        }
        img.attachment-woocommerce_gallery_thumbnail.size-woocommerce_gallery_thumbnail {
            display: none !important;
        }
    }
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.