Page is www.oldvillagem asterpainters.c om/about.aspx
I have validated both the html and the css. Css gives me warnings about background colors but passes.
My problem is this: There is a ul menu on the left side of the page that renders as I would like it to in IE7 (and I believe in IE6) but doesn't look so good in Opera 9.25 or FF 2.
In opera the list looks to be in-line and wraps within the containing <div>
In FF the list is in-line and wraps but outside the <div>
The relevant css (in page.css) is
/code/
#leftmenu {float:left;hei ght:350px;margi n: 10px 10px 10px 10px;width:200p x;
background: url(/images/OV_Logo_trans_1 98.jpg) no-repeat 100% top;}
#leftmenu ul {list-style: none;}
#leftmenu ul li {}
#leftmenu a {display:block; float: left;padding: 0px 0 0 0px;
text-decoration: none;color: #330033;
font-weight: bold;font-size:small;font-family:Arial;}
#leftmenu a:hover {color: #CC0000;}
#leftmenu a:visited {color: #993399;}
#leftmenuconten t {margin:110px 0 0 0px;}
/code/
html is
/code/
<div id="leftmenu">
<div id="leftmenucon tent">
<ul>
<li><a href="#H">Our History</a></li>
<li><a href="#C">C. Schrack & Co.</a></li>
<li><a href="#S">Chris tian Schrack</a></li>
<li><a href="#J">Josep h Stulb</a></li>
<li><a href="#G">Girar d Ave Fire</a></li>
<li><a href="#G2">2nd Generation</a></li>
<li><a href="#R">Camde n Fire</a></li>
<li><a href="#G3">3rd Generation</a></li>
</ul>
</div>
</div>
/code/
I use the same setup on /affiliates.aspx but on this page there is only text in the <div class="leftmenu content"> - no ul
any help would be appreciated
I have validated both the html and the css. Css gives me warnings about background colors but passes.
My problem is this: There is a ul menu on the left side of the page that renders as I would like it to in IE7 (and I believe in IE6) but doesn't look so good in Opera 9.25 or FF 2.
In opera the list looks to be in-line and wraps within the containing <div>
In FF the list is in-line and wraps but outside the <div>
The relevant css (in page.css) is
/code/
#leftmenu {float:left;hei ght:350px;margi n: 10px 10px 10px 10px;width:200p x;
background: url(/images/OV_Logo_trans_1 98.jpg) no-repeat 100% top;}
#leftmenu ul {list-style: none;}
#leftmenu ul li {}
#leftmenu a {display:block; float: left;padding: 0px 0 0 0px;
text-decoration: none;color: #330033;
font-weight: bold;font-size:small;font-family:Arial;}
#leftmenu a:hover {color: #CC0000;}
#leftmenu a:visited {color: #993399;}
#leftmenuconten t {margin:110px 0 0 0px;}
/code/
html is
/code/
<div id="leftmenu">
<div id="leftmenucon tent">
<ul>
<li><a href="#H">Our History</a></li>
<li><a href="#C">C. Schrack & Co.</a></li>
<li><a href="#S">Chris tian Schrack</a></li>
<li><a href="#J">Josep h Stulb</a></li>
<li><a href="#G">Girar d Ave Fire</a></li>
<li><a href="#G2">2nd Generation</a></li>
<li><a href="#R">Camde n Fire</a></li>
<li><a href="#G3">3rd Generation</a></li>
</ul>
</div>
</div>
/code/
I use the same setup on /affiliates.aspx but on this page there is only text in the <div class="leftmenu content"> - no ul
any help would be appreciated
Comment