2011-08-26, 03:39:30
TemurDanelia Wrote:How can I customize css for s3slider?
It automatically included in <head></head> section.
You could switch off including the CSS in the gallery settings in the administration - but then you would have to copy most of the generated CSS and adjust it.
The best way is to create additional, more specific rules in your own CSS, e.g. if the generated rule is
Code:
#s3slider-slider .s3slider-sliderImage span {
background-color: #000;
color: #fff;
...
}
Code:
body #s3slider-slider .s3slider-sliderImage span {
background-color: red;
color: black;
text-align: center;
}