I want to get rid of the padding between the border and the gradient:

enter image description here

In this file I load an own css class:

<h:head>
    <h:outputStylesheet library="css" name="default.css" />
    <title>Our Application</title>
</h:head>

In default.css, I set those parameters:

.rf-p {
    padding:0;
}
/*header*/

.rf-p-hdr {
    padding:0;
}

/*body*/
.rf-p-b {
    padding:0;
}

But when I debug this with firebug, I see that Richfaces always overwrite it: enter image description here

How can I vanquish this?

By the way: I could format the code within the xhtml:

    <rich:panel id="mainPanel" header="Main Menu" style="padding:0">
        <h:form>
        </h:form>
    </rich:panel>

But at first, this is no solution and secondly, it only covers .rf-p and not .rf-p-hdr so there would still be a padding. And it doesn't help too if I set those attributes:

    <rich:panel id="mainPanel" header="Main Menu" headerClass="noborder" bodyClass="noborder" styleClass="noborder">
        <h:form>
        </h:form>
    </rich:panel>

in css file:

.noborder  {
    padding:0;
}
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You can always force to override the declared style:

.noborder  {
    padding: 0 !important;
}

or :

.rf-p {
    padding: 0 !important;
}
.rf-p-hdr {
    padding: 0 !important;
}
.rf-p-b {
    padding: 0 !important;
}
link|improve this answer
Seems to work, thanks. – Bevor Feb 8 at 7:35
feedback

Your Answer

 
or
required, but never shown

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