Skip to content

Instantly share code, notes, and snippets.

@Spellhammer
Created March 10, 2020 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Spellhammer/08dcd4634399d3e0ccf1e2dbea171f61 to your computer and use it in GitHub Desktop.
Save Spellhammer/08dcd4634399d3e0ccf1e2dbea171f61 to your computer and use it in GitHub Desktop.
WooCo Product Thumbnails As Navigation "Dots"
#-product-images-8-117 .flex-control-thumbs {
padding: 16px 32px 16px 32px;
display: flex;
align-items: center;
justify-content: center;
overflow: auto;
}
#-product-images-8-117 .woocommerce-product-gallery .flex-control-thumbs > li {
min-width: 0px;
min-height: 0px;
width: 16px;
height: 16px;
overflow: hidden;
margin-left: 8px;
margin-right: 8px;
}
#-product-images-8-117 .woocommerce-product-gallery .flex-control-thumbs > li > img {
opacity: 0;
}
#-product-images-8-117 .woocommerce-product-gallery .flex-control-thumbs > li > img.flex-active {
opacity: 1;
filter: contrast(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment