My page [www.onusmith.com] has a problem that I'm not sure if it is XHTML or CSS. I have never really seen this before, so I'm not sure which is causing it.
The probably is that there seems to be a "shadow" over the navigation and recent news sections such that you can't click on any of the links or highlight any of the text.
I'm sure that I could mess around with it and fix it, but I would rather have a defined solution so that I know about it for the future.
TIA for your help!Your content div is on top of your nav list. Try this... #content {
position:relative;
text-align: left;
margin-left: 180px;
margin-bottom: 30px;
margin-right: 15px;
padding: 5px;
border: 1px solid #ccd7e0;
}
* html #content {
height:1px;
}Works like a charm! Thanks
The probably is that there seems to be a "shadow" over the navigation and recent news sections such that you can't click on any of the links or highlight any of the text.
I'm sure that I could mess around with it and fix it, but I would rather have a defined solution so that I know about it for the future.
TIA for your help!Your content div is on top of your nav list. Try this... #content {
position:relative;
text-align: left;
margin-left: 180px;
margin-bottom: 30px;
margin-right: 15px;
padding: 5px;
border: 1px solid #ccd7e0;
}
* html #content {
height:1px;
}Works like a charm! Thanks