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

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -