Hi all,
I have a space from my logo to tile_bgheader.gif .I want to remove it but i don't know how to do that.
Can anyone help me?Thanks you so much![]()
![]()
Hi all,
I have a space from my logo to tile_bgheader.gif .I want to remove it but i don't know how to do that.
Can anyone help me?Thanks you so much![]()
![]()
I had the same problem. I found out mine was the tagline that was moved down somehow. I removed the tagline text and the space was removed. I can't tell if that is your problem or not.
Can you tell me name of file have that ?This problems just see in FF...![]()
Sure, Maybe not your white space problem but this is how I fixed mine.
https://www.zen-cart.com/tutorials/i...hp?article=127
in your languages/yourlanguage/header.php
define('HEADER_LOGO_WIDTH', ''750);
define('HEADER_LOGO_HEIGHT', '110');
In your style sheet find this
#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat: repeat-x;
background-color: #ffffff;
height:75px;
}And change to this. (these isn't a header_bg.jpg) and the height should match your logo image.
#logoWrapper{
background-color: #ffffff;
height:110px;
}
Did you also do
in your languages/yourlanguage/header.php
define('HEADER_LOGO_WIDTH', ''750);
define('HEADER_LOGO_HEIGHT', '110');
You have too many stlye sheets and your browser will try to read both of them.
If you are using the new style sheet you will need to remove the other one and make you changes to the new.
<link rel="stylesheet" type="text/css" href="includes/templates/classic/css/stylesheet.css" />
<link rel="stylesheet" type="text/css" href="includes/templates/classic/css/stylesheet_news.css" />