Just noticed the bar above the header disappeared too :/
Just noticed the bar above the header disappeared too :/
You have a lot of stuff in the stylesheet twice, including styling for #mainWrapper and the negative margin you added for the sidebox columns. I would go through it and clean out the duplicates. For now:
#navColumnOneWrapper, #navColumnTwoWrapper, #mainWrapper {
margin-top: -12em;
}
You need to remove the red part - you're adding the negative margin to the mainWrapper, too, so your navMain doesn't show.
You can add this to the bottom of the stylesheet to center things:
#mainWrapper {margin:auto;}
but once you get the stylesheet cleaned up, you can add the margin:auto; to the original #mainWrapper statement.
Ahh it worked. I will have to clean it up ..I didn't realize there were so many duplicates. Thank you so much for all your help!!