I am using <h:messages globalOnly="true"/>
to display error messages.
When error comes, it shows in below format.
Any idea how can I remove this dot and spaces and just show the error?
I am using <h:messages globalOnly="true"/>
to display error messages.
When error comes, it shows in below format.
Any idea how can I remove this dot and spaces and just show the error?
You could download firebug plugin for firefox and trace the css , maybe try this css:
.item-list ul li
{
list-style-type: none;
list-style-image: none;
}