Forums

NeoJoomla - English => General discussions => Topic started by: Darren Currie on December 19, 2007, 02:45:44 AM



Title: Sports Web Content Background colour
Post by: Darren Currie on December 19, 2007, 02:45:44 AM
Hi,

I would like to change the Content body background in the sport web template. Have tried everything but it still stays white.
What am I doing wrong?

Darren


Title: Re: Sports Web Content Background colour
Post by: Raphael on December 19, 2007, 08:51:46 AM
Hello Darren,

You need to edit the class #content, line 260 in the file template_css.css, with something like this :

Code:
#content {
    margin-top:10px;
    background-color: #CCCCCC;   
}

Regards,


Title: Re: Sports Web Content Background colour
Post by: Darren Currie on December 19, 2007, 09:22:51 AM
Thanks,
 for some reason there was no background in the content section in the css file.
Now I can change colors fine but I want to put a marble finish for the background.
I am using this
/* Contents area */
#content {
   margin-top: 10px;
   background-color: url("../images/backgroundmarbleblue.png")repeat-x;
But it doesn't work. Am I doing something wrong.
The image is in my joomla directory in the images.
Thanks


Title: Re: Sports Web Content Background colour
Post by: Raphael on December 19, 2007, 09:34:04 AM
Ok,

If you use this path for your image, you need to move the image in the template images folder (/templates/sportsweb/images/), and not the joomla one (/images/).

Regards,


Title: Re: Sports Web Content Background colour
Post by: Darren Currie on December 19, 2007, 10:17:33 AM
Thanks Raphael.
All done.
Your quick responses are much appreciated.

Done