i'm trying change current background color image. found code in css-file , edited shows white background instead of image desired.
this code before:
and after:
i've placed image in templates/rhuk_solarflare_ii/images/ folder. doing wrong?
this code before:
body {
margin: 15px;
height: 100%;
padding: 0px;
font-family: arial, helvetica, sans serif;
line-height: 120%;
font-size: 11px;
color: #333333;
background: #000000;
and after:
body {
margin: 15px;
height: 100%;
padding: 0px;
font-family: arial, helvetica, sans serif;
line-height: 120%;
font-size: 11px;
color: #333333;
background-image: url(images/background.jpg);
background-repeat: repeat;
i've placed image in templates/rhuk_solarflare_ii/images/ folder. doing wrong?
try
background:url(full path background);
background:url(full path background);
Comments
Post a Comment