
Originally Posted by
HelenSama
I'd like to use an image instead of the Featured Products heading in the center column.
Find in your copy of the stylesheet.css this and maybe seperate out the center - check the current image tile_back(a tile) that is repeated and either enter your image or rename your image to tile_back
Code:
.leftBoxHeading, .centerBoxHeading, .rightBoxHeading {
margin: 0em;
background-color: #abbbd3;
background-image: url(../images/tile_back.gif);
padding: 0.5em 0.2em;
}
To maybe look like:
Code:
.centerBoxHeading {
margin: 0em;
background-color: #abbbd3;
background-image: url(../images/your_image.gif);
padding: 0.5em 0.2em;
}
.leftBoxHeading, .rightBoxHeading {
margin: 0em;
background-color: #abbbd3;
background-image: url(../images/tile_back.gif);
padding: 0.5em 0.2em;
}