Hi I have an struts2 application with jsp pages where i have struts2 tags something like this
<s:form action="contactus.action" method="post" name="ContactUs Form" >
<s:textfield name="cust.fname" key="fname" size="25" maxlength="20" required="true" />
<s:textfield name="cust.lname" key="lname" size="25" maxlength="20" required="true"/>
</s:form>
where i get the "label" and the "input " box , I have to make the label as bold and adjust the width for the long labels ,In the text.ftl i cannot make such changes i guess ?
Here i display the label from the resource bundle .
Then how do i adjust the label width n make it bold ?