Can't override margin-right styling [closed]
I'm modding an image slider and can not figure out how to override the 10px right margin. You'll see the gap on the left edge of slide 2. Thanks for any help.开发者_开发百科
http://robtaylor.frmboy.com/
Jason
In your style.css file line 8:
.jcarousel-skin-default .jcarousel-item-horizontal {margin-left: 0;margin-right: 10px;}
Just remove margin-right rule or set it to 0.
why don't you add the following css in your page:
.jcarousel-skin-default .jcarousel-item-horizontal {margin-right:0;}
I tried it and it works!
精彩评论