Jaf
Posts: 70
Joined: 2/1/2006 Status: offline
|
(in subsequent emails it became clear that the OP was using the Convert tags to be XHTML compatible option) The problem is your attempt to convert tags to be more XHTML like Although the width attribute isn't deprecated in HTML 4.0 Transitional, it is deprecated thereafter. In particular it, and almost all other non-CSS attributes are deprecated in XHTML. In XHTML all style, sizing and positioning tags and attributes are deprecated. All of these aspects should be managed via the use of stylesheets and the ID and STYLE attributes. The intention with XHTML is to totally separate document style and structure So selecting this policy is the cause of your problem since making the HTML more like XHTML specifically requires the removal of all these tags and attributes. As such this option overrides any of the other settings. If you disable this setting you should find that your WIDTH attributes are left intact and you can select to remove other groups of tags. I hope this explains what is happening.. Note... this "XHTML" is only intended to lay the groundwork for a conversion to XHTML, and not do the conversion itself. This option will convert tagnames to lower case, remove all deprecated tag attributes, and place all attribute values in quotes. It will also add the railing "/" in singleton tags such as <br>. However it won't ensure that your tagging structure is valid, in particular it wan't resolve any missing or incorrectly matcheed or nested tags.
< Message edited by Jaf -- 8/16/2007 10:34:00 PM >
|