Which CSS class is controlling these numbers being written?
I've got a jQuery CSS Gallery setup, Just playing about with the styles etc of it n开发者_JAVA百科ow. But I've got one issue with it, That issue is that the numbers 1,2,3 and 4 are appearing in the list. I dont want them adding. I've tried playing about with the CSS class and set the ol list-style to none. But it doesnt seem to have changed.
Anyone got any ideas?
Example here :
Example
There is this HTML in the source:
<a style="width:165px;">4</a>
Either you can indent the numbers with css:
.horinaja_pagination a
{
text-indent: -9999px;
}
Or replace the number with
.
Either will work fine, but I'd recommed using the first solution as it's better for accessibility if some user has styles turned off.
try to put pagination on false like this:
$('#demo').Horinaja({
capture:'demo',
delai:0.5,
duree:6,
pagination:false,
});
If you still want to show the circles but not the number you could try this (no guarantee that it will work:
Add this to your css:
ol.horinaja_pagination li a {
display: none;
}
精彩评论