javascript - Fancybox left and right arrow button on the right-bottom of sliding picture -
just trying figure out how change options of fancybox buttons snap them on right bottom corner of sliding images.
fancybox template example http://fiddle.jshell.net/t91p3g7s/?utm_source=website&utm_medium=embed&utm_campaign=t91p3g7s
arrows position want achieve: buttons right-bottom corner
you can force on css. it's simple.
just add css:
.fancybox-next { bottom: 10px; top: auto; width: 30px; height: 30px; } .fancybox-prev { bottom: 10px; top: auto; width: 30px; height: 30px; right: 60px; left: auto; } .fancybox-next span, .fancybox-prev span{ visibility: visible !important; display: block !important; }
or click here.
http://fiddle.jshell.net/t91p3g7s/6/
:)
Comments
Post a Comment