I am using following content slider slider. For its forward and back button i am applying styles for eg text-indent and width,height but its not working. Live demo here http://jsfiddle.net/3WtJ8/
I am using following content slider slider . For its forward and back button
Share
text-indent,widthandheightcan only be applied to block-level elements. By default anaelement is inline.If you add the style:
display: blockordisplay: inline-blockto your.bx-prevstyle it should work, however inline-block may not be recognised by IE7 or lower without using something like modernizr.Updated fiddle