Okay, if you used the custom header option — just leave it. Just seems a bit odd to me — but it works, so no problem! (No sense in messing with what works — LOL!)
Also, I just realized that this code (which I said above to remove or comment out) is in there for IE 6 & 7 so leave it alone!
#site-title, #site-description {
clip: rect(1px, 1px, 1px, 1px);
display: none;
position: absolute !important;
}
Page background — just remove this entire CSS (line 322) – there is another body code on line 37 that will then change it back to white:
body {
background: none repeat scroll 0 0 #E2E2E2;
}
To fix the black horizontal line takes some pretty fussy CSS coding, so I’m not sure it’s a great way to go and it probably won’t look right if and when you add any other menu items, but below is what will do it.
There is another way to make a horizontal line on the page by using an hr element — but you’d have to modify the header.php file.
line 555
#access ul {
font-size: 13px;
list-style: none outside none;
margin: 0 0 0 -55px;
padding-left: 0;
}
line 95
#access {
background: -moz-linear-gradient(#252525, #0A0A0A) repeat scroll 0 0 transparent;
border-bottom: 4px solid black;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); DELETE THIS LINE
clear: both;
display: block;
float: left;
margin: 0 0 6px 100px;
width: 80%;
}
line 625
#branding #searchform {
margin-right: 40px;
position: absolute;
right: 7.6%;
text-align: right;
top: 3.8em;
}
BUT BEFORE you do any of this, please make a copy of your stylesheet so you can easily revert back to a copy if these changes make a mess of it!