Hi,
I am using Zen Cart Classic 1.3.7.1 and changing the color of my side boxes. I have found in the CSS where to change the color from white to off-white but only the top of each box is changed. The bottom portion of each box is still white.
http://yonsidemanse.com/dwellinthegarden/
I suspect that I need to alter "box_bg.jpg" but I can't find it. The location is "background-image: url(../images/box_bg.jpg)" but what is the full URL where this is specifically located?
And if this is not the right solution, what should I be doing to completely change the color in all sideboxes?
Thanks for your help!
##############################___
.leftBoxContainer, .rightBoxContainer {
margin: 0em;
border: 1px solid #9a9a9a;
border-bottom: 5px solid #384b38;
margin-top: 1.5em;
/* create free space at the bottom of the box in which to display the image */
padding-bottom: 20px;
/* add the image to the boxes background */
background-image: url(../images/box_bg.jpg);
/* position the image at the bottom and center of the box */
background-position: bottom center;
/* EITHER set the image to not repeat */
background-repeat: no-repeat;
/* OR set it to repeat horizonatally */
background-repeat: repeat-x;
}





