jim 777 wrote:Are you talking about the grey around the border of the page? Or the gradient on each line?
The first is easy as adjusting the BG property of the file (whether php or html) and the later is a repeated gif image. Usually very small and repeated across the page.
color: #828282;
background: url("{T_THEME_PATH}/images/body.gif") repeat;
repeat
in the following line in colours.cssbackground: url("{T_THEME_PATH}/images/body.gif") repeat;
repeat-x
repeat-y
Code: Select all
background-image: url("{T_THEME_PATH}/images/tag_2_bg.jpg") repeat-x;
it didnt make a different it's still repeating the image over and over, I also tried it with x insteadhtml, body {
color: #536482;
background-color: #ACA8A1;
background-image: url("{T_THEME_PATH}/images/tag_2_bg.jpg") repeat-y;
}
h1 {
color: #FFFFFF;
}
h2 {
color: #28313F;
}