Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Header being covered

Header being covered

Locked

Views: 1,106

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
17 Feb 2009, 3:14 AM
#1
goldmarkpromo avatar

goldmarkpromo

New Zenner

Join Date:
Feb 2009
Posts:
18
Plugin Contributions:
0

Header being covered

Hi,
I was hoping someone could help me with my site.
https://www.microbelift.net
I'm having trouble with the banner. It's too wide ( right side )
and also is being covered by the links under it. How can I fix this as well?
Thanks
Howard
[email protected]

17 Feb 2009, 3:27 AM
#2
coolcarpartsonline avatar

coolcarpartsonline

Totally Zenned

Join Date:
Feb 2008
Posts:
1,386
Plugin Contributions:
0

Re: Header being covered

Your site width is 750px and your banner/logo is 780px. You need to either use a different logo or change the width of the whole site.

17 Feb 2009, 3:29 AM
#3
goldmarkpromo avatar

goldmarkpromo

New Zenner

Join Date:
Feb 2009
Posts:
18
Plugin Contributions:
0

Re: Header being covered

How do I change the width of the site?
Also what about the links covering some of my logo?
Thanks for the help.
Howard

17 Feb 2009, 6:01 AM
#4
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Header being covered

change width of site via

includes/templates/classic/css/stylesheet.css

i.e.

#mainWrapper {
 background-color: #ffffff;
 text-align: left;
 [B]width: 750px;[/B]
 vertical-align: top;
 border: 1px solid #9a9a9a;
 }

Logo: alter height/width of logo image via
includes/languages/english/classic/header.php
i.e.

define('HEADER_LOGO_WIDTH', '200px');
define('HEADER_LOGO_HEIGHT', '70px');
define('HEADER_LOGO_IMAGE', 'logo.gif');

may also have to adjust in stylesheet

#logoWrapper{
background-image: url(../images/header_bg.jpg);
 background-repeat: repeat-x;
 background-color: #ffffff;
height:75px;
 }