Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Bradley-D/c5a27c0717afe38fd6469bd275c06cb6 to your computer and use it in GitHub Desktop.
Save Bradley-D/c5a27c0717afe38fd6469bd275c06cb6 to your computer and use it in GitHub Desktop.
WooCommerce: Gallery Slider Navigation Controls
// Will need some type of styling as well, something like this as a guess
ul.flex-direction-nav {
position: absolute;
top: 30%;
z-index: 99999;
width: 100%;
left: 0;
margin: 0;
padding: 0px;
list-style: none;
}
li.flex-nav-prev {float: left;}
li.flex-nav-next {float: right;}
a.flex-next {visibility:hidden;}
a.flex-prev {visibility:hidden;}
a.flex-next::after {
visibility:visible;
content: '\f105';
font-family: FontAwesome;
margin-right: 10px;
font-size: 70px;
}
a.flex-prev::before {
visibility:visible;
content: '\f104';
font-family: FontAwesome;
margin-left: 10px;
font-size: 70px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment