Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the page which has the following tags:

<h:head>
 <h:outputStylesheet name="style.css" library="css" />
 </h:head>

and some kind of dataScroller:

<rich:dataScroller for="productsList" id="scroller" maxPages="10">

Now I'm trying to override dataScroller default css style by adding

.rf-ds { background: black; }

in my style.css file.

I don't see any changes. When I open firebug I see both .rf-ds classes one is coming from my css and is disabled and second one is default dataScroller class.

How can I override default class?

share|improve this question

2 Answers

up vote 2 down vote accepted

try to add !important to your css like this:

.rf-ds { background: black !important; }

see http://www.electrictoolbox.com/using-important-css/

share|improve this answer
You saved me!!! – danny.lesnik Jul 27 '11 at 7:46

Try <link rel="stylesheet" type="text/css" href="/resources/css/style.css" /> in your <head></head> .From what I have seen, RichFaces loads CSS attached with <link> after it has loaded its own CSS, giving your CSS precedence. In our project we needed to customize a lot of components's css and IMHO adding !important is not such an elegant solution (its more like a hack). Hence we took this approach.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.