I have this form.
<s:form action="register">
<s:textfield class = "formfield" name="userBean.username" label="User Name" />
<s:textfield class = "formfield" name="userBean.password" label="Password" />
<s:textfield class = "formfield" name="profileBean.firstName" label ="First Name"/>
<s:textfield class = "formfield" name="profileBean.lastName" label="Last Name" />
<s:textfield class = "formfield" name="profileBean.Age" label="Age" />
<s:submit/>
</s:form>
What I wanted to do is provide it custom styling through css, but the problem is it is not being applied, what is the solution for this? our designers will style our form using css but however, there styling could not be applied if we convereted their form in struts tags
What we are aiming to do is to style it similar to how you style input tags