Site in my sig. Problem is: IE its all double spaced, in FF it looks like it should. Im trying to see where the problem might be but i cant see it. Anything you can suggest or just leave it alone because it looks ok?
Do not use blockquote for indenting text; use <p> with margin-left instead. Your double-spacing is probably because of the way you use <br> tags - this tag cannot have the end tag (i.e. </br> is illegal): J.D.
W3 validator actually told me to close <br> tags for page to be xhtml valid. Ill try to remove them and see how it looks. found it: http://www.w3schools.com/tags/tag_br.asp "In XHTML the <br> tag must be properly closed, like this: <br />." Ah i see the mistake now! thanks for pointing me in right direction!
Well, illegal was not the right word to use with regards to XHTML (I took a quick look didn't realized it was XHTML until your second post). With XHTML, it's more like this syntax is confusing for some user agents and they may interpret the sequence of <br></br> as if two <br>'s were used. As you have figured out, it is better to use minimized tag syntax in XHTML (e.g. <br />). J.D.