hello
I have installed a Zencart template with a horizontal header displayed the full length of the screen. But I would like the header be the same length as the main container. (750px)
I went looking for the CSS file in my template classic > css > stylesheet.css
#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat: repeat-x;
background-color: #ffffff;
height:75px;
}
and changed it in:
#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-color: #ffffff;
height:75px;
width:750px;
}
Than I saved the file , but nothing happened in the browser. It is still a header
over the full length of the screen.



