In JSF, I included the following line in my xhtml file:
<h:panelGroup id="messageHeader">
<h:messages for="messageHeader" layout="list" errorClass="error" infoClass="inform"/>
</h:panelGroup>
The text will be displayed as
<ul>
<li class="error"> Please enter a First Name </li>
<li class="error"> Please enter a Last Name </li>
</ul>
How do I apply a CSS style to a tag <ul>or some surrounding tag <span>?
Here is what I am trying to do. I want all error messages to appear in one red box. I also want all informational messages to appear in one green field. In the above example, 2 red boxes are obtained; one for each item <li>.
source
share