Last active
May 3, 2018 06:42
-
-
Save Bradley-D/c5a27c0717afe38fd6469bd275c06cb6 to your computer and use it in GitHub Desktop.
WooCommerce: Gallery Slider Navigation Controls
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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