When using <s:actionerror > tag, the first character of error message is
automatically getting converted to upper case. I haven't set any
"text-transform" property in my CSS.
If I do "View Source", I see proper text but on JSP its behaving weirdly.
My CSS:
.errorMessage {
color: red;
font: 10px verdana, arial, helvetica, sans-serif;
}
In "View Source"
<ul>
<li><span class="errorMessage">Please enter User Id</span></li>
</ul>
But on JSP, it is displayed as
Please Enter User Id
I have included struts.properties in my project classpath and have set *
struts.ui.theme=simple*
What could be the reason of this behaviour?