Jerry62704 Posted October 5, 2007 Report Share Posted October 5, 2007 Our application prior to changing it to match the W3 validation had text that appeared in the fieldset box (top left). How can I get that to apear again? Link to comment Share on other sites More sharing options...
justsomeguy Posted October 5, 2007 Report Share Posted October 5, 2007 No one can give you an answer to a question like that without seeing the code involved. Link to comment Share on other sites More sharing options...
Jerry62704 Posted October 5, 2007 Author Report Share Posted October 5, 2007 No one can give you an answer to a question like that without seeing the code involved.OK, here is the code. Hope it makes it clearer. I'd like the heading to be in the top, left line of the box. <fieldset title="Household Information/Información del Hogar"> <h2><font size="2" face="bold"> <bean:message key="fs.calc.input.household.heading"/></font></h2> <div class="formTextAlign"> <bean:message key="fs.calc.input.numInHH"/></div> <div class="formBoxAlign"> <html:text styleId="numInHH" property="numInHH" size="2" maxlength="2"/></div> <div class="formTextAlign"> <bean:message key="fs.calc.input.childrenUnder2"/></div> <div class="formBoxAlign"> <html:text styleId="numberOfChildrenUnder2" property="numberOfChildrenUnder2" size="2" maxlength="2"/></div> <div class="formTextAlign"> <bean:message key="fs.calc.input.childrenOver2"/></div> <div class="formBoxAlign"> <html:text styleId="numberOfChildrenOver2" property="numberOfChildrenOver2" size="2" maxlength="2"/></div> <div class="formTextAlign"> <bean:message key="fs.calc.input.qualifyingMember"/></div> <div class="formBoxAlign"> <html:select styleId="qualifyingMember" property="qualifyingMember"> <html:option value="false"> <bean:message key="fs.calc.input.yesno.no"/></html:option> <html:option value="true"> <bean:message key="fs.calc.input.yesno.yes"/></html:option> </html:select></div> <div class="formTextAlign"> <bean:message key="fs.calc.input.simplifiedProcessingUnit"/></div> <div class="formBoxAlign"> <html:select styleId="simplifiedProcessingUnitInd" property="simplifiedProcessingUnitInd"> <html:option value="false"> <bean:message key="fs.calc.input.yesno.no"/></html:option> <html:option value="true"> <bean:message key="fs.calc.input.yesno.yes"/></html:option> </html:select></div> </fieldset> Link to comment Share on other sites More sharing options...
justsomeguy Posted October 5, 2007 Report Share Posted October 5, 2007 You need a legend for it, check here:http://www.w3schools.com/tags/tryit.asp?fi...ryhtml_fieldset Link to comment Share on other sites More sharing options...
Jerry62704 Posted October 9, 2007 Author Report Share Posted October 9, 2007 Thank you very much. Exactly what I wanted. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now