Action Message tag in struts2

struts2

Solution

you can use the css styles as well as jquery theme attribute to decorate your action error and action message.

<div class="error"><s:actionerror theme="jquery"/></div>
<div class="message"><s:actionmessage theme="jquery"/></div>

.message li
{
    font-size: 14px;
    color: #000066;
    text-align: center;
    list-style: none;
    font-family: Trebuchet MS,sans-serif,inherit,Arial,monospace;
}

.error li
{
    font-size: 14px;
    color: #990000;
    text-align: center; 
    list-style: none;
    padding-right: 50px;
}

Problem

I'm new to struts to How to decorate the action message and action errors in struts2 jsp page? ``` <s:actionmessage/> <s:actionerror/> ```

Original source