Random Black bar?
Permalink
<div id="body">
Put all this content inside head tag.
<div id="concretewrapper">
#body {
float:center, no such thing.
Use:
#body {width:800px;
margin:0 auto}
Viewed in Chrome:
- Page is centered
- Black area behind navigation
Viewed in IE:
- Page is left-aligned
- Black area behind navigation
- Last navigation element breaks out of the line
Is that black area behind the navigation, the one you're referring to? If so, it's a minor CSS tweak, if not... let me know what the problem is
.menu ul li a { background-color:#333333; color:white; float:left; padding-bottom:10.5px; padding-left:0; padding-right:0; padding-top:10.5px; text-decoration:none; width:160px; }
to
.menu ul li a { background-color:#333333; color:white; float:left; padding-bottom:10.5px; padding-left:0; padding-right:0; padding-top:10.5px; text-decoration:none; width:158px; }
Clear C5 cache and your browser cache and see if that changes anything.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
It also fixed the centering issue with IE, Thanks a lot for all of your help!