One thing that has bugged the heck out of me all along is that upon first load of any page in my site, the Left Box Container shows up first in the middle of the page
Check with you host to see if you can be moved to a less taxed server, or check with certified hosting here.
The logo is not centered in the header wrapper. Haven't been able to fix this.
To address this you have a couple of issues to correct for; in the css find
Code:
#logoWrapper {
background-color: Black;
text-align: left;
width: 85%;
vertical-align: top;
}
Change to this due to it being the "wrapper/container for the logo:
Code:
#logoWrapper {
background-color: Black;
width: 100%;
vertical-align: top;
}
Then find all instances of #logo and remove and reduce it to a separate entry as such:
Code:
#logo {
text-align: center;
}
The categories under the logo likewise not centered in header wrapper
Find this and set the width to 100% as shown
Code:
#navMainWrapper, #navSuppWrapper, #navCatTabsWrapper {
margin: 0em;
background-color: Black;
font-weight: bold;
color: White;
height: 100%;
width: 100%;
}
I used to have a nice border in-between the logo and the categories. Lost that when made the background of headerwrapper black. Any way to put one in?
Back to logo wrapper add the border statement:
Code:
#logoWrapper {
background-color: Black;
text-align: center;
width: 100%;
vertical-align: top;
border-bottom: .25em solid #ffffff;
}
I was able to make the Center Box Heading more narrow, but can't seem to do so with the bottom navigation wrapper (where it says HOME)
Started looking at this and found that there are several other items that are duplicated and making adjustment difficult as one does not know if there is the same tag maybe later overriding what one is trying to do. So start by cleaning up the occurrences of tags and begin with #mainWrapper - it shows up several times with conflicting settings: make the first/main separate entry look at least like this and when deleting others compare the settings assigned there, make note of them and you might have to add one or more to this set of entries. Also did not know when you stated "narrow" if you meant height or width.
Code:
#mainWrapper {
margin: auto;
background-color: #FFFFFF;
background-image: url(../images/boxbackground.jpg);
text-align: left;
width: 85%;
vertical-align: top;
}
After you do this one, search for other duplicate tag entries and combine and or separate into individual entries if required.
Do these things and see what remains.