<!-- m --><a class="postlink" href="http://www.stellmond.com/rules.php">http://www.stellmond.com/rules.php</a><!-- m -->
As you can see, the navigation goes over the text. But what confuses me is this page is like every other on the site; the navigation is fine on all the other pages. (Here (<!-- m --><a class="postlink" href="http://www.stellmond.com">http://www.stellmond.com</a><!-- m -->) and here (<!-- m --><a class="postlink" href="http://www.stellmond.com/houses.php">http://www.stellmond.com/houses.php</a><!-- m -->) for example).
This is the id left (Which the navigation is using):
#left
{
background-color: #FFFFFF;
margin-left: 5px;
border-style: solid;
border-width: 2px;
border-color: #663366;
width: 24%;
height: 215px;
overflow: auto;
background-image: url(/stoney.gif);
z-index: 2;
position: absolute;
top: 220px;
}
Its probably something simple I'm just not seeing, as always... Anyone want to point me in the right direction? When I try to validate the page W3C's validator tells me that my container div isn't closed, but it is, right after the navigation.Throw another </div> at the bottom, above </body> to see what it does. I think you may be missing one.No, hang on. I think the </div> needs to go in front of <div id="left">, if I'm understanding the layout of the page correctly. It's the closing "</div>" for <div id="main"> near the top.Ending the div before the navigation worked. Its after the navigation on the other pages... But as long as its working I'm not complaining Thanks.
As you can see, the navigation goes over the text. But what confuses me is this page is like every other on the site; the navigation is fine on all the other pages. (Here (<!-- m --><a class="postlink" href="http://www.stellmond.com">http://www.stellmond.com</a><!-- m -->) and here (<!-- m --><a class="postlink" href="http://www.stellmond.com/houses.php">http://www.stellmond.com/houses.php</a><!-- m -->) for example).
This is the id left (Which the navigation is using):
#left
{
background-color: #FFFFFF;
margin-left: 5px;
border-style: solid;
border-width: 2px;
border-color: #663366;
width: 24%;
height: 215px;
overflow: auto;
background-image: url(/stoney.gif);
z-index: 2;
position: absolute;
top: 220px;
}
Its probably something simple I'm just not seeing, as always... Anyone want to point me in the right direction? When I try to validate the page W3C's validator tells me that my container div isn't closed, but it is, right after the navigation.Throw another </div> at the bottom, above </body> to see what it does. I think you may be missing one.No, hang on. I think the </div> needs to go in front of <div id="left">, if I'm understanding the layout of the page correctly. It's the closing "</div>" for <div id="main"> near the top.Ending the div before the navigation worked. Its after the navigation on the other pages... But as long as its working I'm not complaining Thanks.