Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have difficulty in removing border from PrimeFaces <p:panelGrid>.

<p:panelGrid styleClass="companyHeaderGrid">
    <p:row>
        <p:column>
            Some tags
        </p:column>
        <p:column>
            Some tags
        </p:column>
    </p:row>
</p:panelGrid>

I have been able to remove border from the cells with:

.companyHeaderGrid td {
    border: none;
}

But

.companyHeaderGrid {
    border: none;
}

Does not work.

share|improve this question

2 Answers

up vote 25 down vote accepted

The border is been set on the generated tr and td elements, not on the table. So, this should do:

.companyHeaderGrid tr, .companyHeaderGrid td {
    border: none;
}

How I found it? Just check the generated HTML output and all CSS style rules in the webdeveloper toolset of Chrome (rightclick, Inspect Element or press F12). Firebug and IE9 have a similar toolset. As to the confusion, just keep in mind that JSF/Facelets ultimately generates HTML and that CSS only applies on the HTML markup, not on the JSF source code. So to apply/finetune CSS you need to look in the client (webbrowser) side instead.


enter image description here

share|improve this answer
Thank you for answer and advice. – Eleeist May 2 '12 at 21:03
You're welcome. – BalusC May 2 '12 at 21:08

If BalusC answer doesn't work try this:

.companyHeaderGrid td {
     border-style: hidden !important;
}
share|improve this answer
2  
This is only applicable if your own CSS is not been loaded after PrimeFaces one, which is indeed a common starter's mistake. The !important declaration is then actually a workaround, not a solution. See for more detail also stackoverflow.com/questions/8768317/… – BalusC Dec 20 '12 at 23:05

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.