4. Is it normal to change the size of the main wrapper to the size of your logo? In classic, it does it automatically.
It is not classic specifically that does this it is the method or design of the header_bg.jpg and how it is used. If you look at this you will find that it is called to repeat:x and this will make it appear to resize. the preferred method would be to design this with a graphic that is the height of the header and 5-10 pixels wide that you can have repeat without spoiling your header look.
3. How do you align the "home" in the middle of the page with the top of the categories sidebox.
To do this you need to adjust margins of either the side boxes or the breadcrumb(this is what 'home' is) to attaing the alignment that you want.
Find in your css file:
Code:
#navBreadCrumb, #navEZPagesTop {
font-size: 1em;
font-weight: bold;
margin: 0em;
padding: 1em;
}
Change to:
Code:
#navBreadCrumb, #navEZPagesTop {
font-size: 1em;
font-weight: bold;
margin: 0em 1em;
padding: 1em;
}
You got 1&2 corrected or I am not seeing what you describe.