richs@whidbey.net wrote:
On Jun 2, 2006, at 10:49 AM, Thomas Bruederli wrote:
- Make sure your changes in the skin templates are XHTML valid. <br> -> <br /> Also make use of CSS styling instead of using <nobr><center> tags.
You caught me. :) I changed it from:
<td colspan=2><br><nobr><center>
to:
<td /><td style="text-align: center; white-space: nowrap;"><br />
Correct me if I'm wrong... but isn't "<td />" not XHTML valid? Should it' just be "<td></td>"... AFAIK the XHTML rule (when converting from regular HTML) is this: If it doesn't have a corresponding closing tag: br, meta, link; then it needs to have the "/>" ending syntax. Otherwise, just make sure to include both the starting and ending tags in the code.