Thanks, I'll take a look and see if I can help.
for your first question: (while not recommended) you can remove the top menu by going to your stylesheet.css and finding the following lines of code.
Code:
#navMainWrapper, #navSuppWrapper, #navCatTabsWrapper {
margin: 0em;
background-color: #d7c99c;
background-image: url(../images/tile_back.gif);
padding: 0.5em 0.em;
font-weight: bold;
color: #ffffff;
height: 1%;
}
Now make the following changes: by breaking out the #navMainWrapper to its own declaration as follows:
Code:
#navSuppWrapper, #navCatTabsWrapper {
margin: 0em;
background-color: #d7c99c;
background-image: url(../images/tile_back.gif);
padding: 0.5em 0.em;
font-weight: bold;
color: #ffffff;
height: 1%;
}
#navMainWrapper {
display:none
}
I'll look at your site and get back to you here.