in post: <news:gSsrc.52022$ .com>
Tim Gill <0m> said:
> PAGE: http://www.timgillmusic.com/NEWSITE/index.html
·
http://moreshit.bruciesusenetshit.info/screencap01.png [4k]
use % for font sizes and use 100 of them. if i wanted my fonts 20%
smaller than my preferred size so i couldn't read the text i would do it
myself.
· there is no 'text-size' property in css.
· <div id="header"><img src="images/header3.jpg"...
should be <h1><img src="images/header3.jpg" ...</h1>
· all the <img src="images/services_header.jpg"... /> type graphics
should be in header elements:
<h2><img src="images/services_header.jpg" ...></h2>
· your dtd is html not xhtml so drop the '/' from the end of your <img>
tags.
> When I view the above page in IE, the layout is fine, with the exception of
> the small transparent border IE puts on the bottom of all of my images.
i cant see a transparent border
> In netscape (7.1), the container that wraps up all my content decides not to
> extend below the menu contents which are floated left.
float removes elements from the normal flow
> How would I work around that?
the quickest fix would be adding 'min-height' to #maincontent large
enough to extend below the floated elements. as you have no way of
knowing the font size the visitor is using make sure the min-height is
large enough to accommodate a reasonable variation in the font size.
probably something around 600px.
#maincontent{min-height:600px;}
--
b r u c i e