<fieldset> when using this command, dreaweaver looses the editable region I have created, and my site goes to rat shit - Is this an error I have created or is that what should happen. Can sombody explain why Jamie
Fieldset needs to be corecttly nested if you are using any div's or tables. eg <table> <fieldset> <tr><td> content </td></tr> </fieldset> </table> HTML:
Not quite right. fieldset may not be a child of table. html 4.01 <!ELEMENT TABLE - - (CAPTION?, (COL*|COLGROUP*), THEAD?, TFOOT?, TBODY+)> Code (markup): A table may have 0 or 1 of caption, followed by any number of col xor colgroup, then 0 or 1 of thead and tfoot, and finally 1 or more of tbody. All in that order. jim bob 9 pants: In what context are you trying to use the fieldset? Don't forget that in html, legend must be the first child of fieldset. Does DW enforce DTD requirements? A little more info would be helpful. cheers, gary
Sorry yeah that may need to be the other way round: <fieldset> <table> <tr><td> content </td></tr> </table> </fieldset> HTML: Either way it is important!