Well, i was changing the header_bg.jpg and then i thought everything was gonna be good. Um not.. u see:
http://www.pandafia.com/ (please watch)
i have this ewhite block before the background what am i gonna do to remove this?
Well, i was changing the header_bg.jpg and then i thought everything was gonna be good. Um not.. u see:
http://www.pandafia.com/ (please watch)
i have this ewhite block before the background what am i gonna do to remove this?
The white block is an image with a link to your website.
Right now you have a main logowrapper div with your image background, and then an image that is 300px on top of it. Not sure why one image is a different colour, but you need to remove the image from your tpl_header.php file.
Try opening your stylesheet locate in /includes/templates/classic(or your override name here)/css
Once in your stylesheet look for a logoWrapper similar to this -->
#logoWrapper{
background-image: url(../classic/images/header_bg.jpg);
background-repeat: repeat-x;
background-color: #BBD17E;
float:left;
height:160px;
width:600px;
}
I suggest that you adjust your width with
width:****px;
replace ****with your value. If you don't know what value to use just add a number (larger than what it is originally set to) and go to your site and view it. If it isn't the right size change the value even larger until you get the size you want. This is what I ended up doing. I ended up with the value of 600. Time consuming but it works.