Group Box on Form Uncontrollable

  • Thread starter Thread starter Bill Dross
  • Start date Start date
B

Bill Dross

I've created a feed form (using FP 2003) that has 3 group boxes on it.
Within each group box there is a table holding the various elements of the
form.
The tables are defined as being 751 pixels wide.

The problem is that the group boxes go from border to border. Is there a
way to control how 'wide' the group boxes are? I would like them to just
surround the table and not go from border to border.

Appreciate any help anyone can provide.

Regards,

Bill
 
There is no width attribute for <fieldset>, so it will take up 100% of the
width of its container.
Consider:
<table width="760">
<tr>
<td><fieldset><legend>form section title</legend>
<table width=" 751">
form stuff
</table>
</fieldset>
</td></tr></table>

which will limit the box to a width of 760px.

Ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top