Last active
December 23, 2015 10:29
-
-
Save regepan/6622173 to your computer and use it in GitHub Desktop.
always visible arrows in fancybox by CSS.
This file contains 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
#fancybox-left-ico { | |
left: -45px; | |
} | |
#fancybox-right-ico { | |
right: -45px; | |
left: auto; | |
} | |
.fancybox-nav span { | |
visibility:visible; | |
} | |
#fancybox-left:hover span { | |
left: -45px; | |
} | |
#fancybox-right:hover span { | |
right: -45px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment