Elxis CMS Forum

Support => General => Topic started by: Seiyoku on September 11, 2007, 12:40:56

Title: Background when posting new articles
Post by: Seiyoku on September 11, 2007, 12:40:56
When I post a new article, or edit one even from the frontend.
The background I get is the image I have in the background. It happen that I write in black and my background is black   :'(
I don't find an option to get rid of the background image when I write, and just have a white background just like the one that it's showed in the site when I see it.

Should I keep writing the text in a different color and then change it to black  when posting? Or I am just missing an option?

(http://img391.imageshack.us/img391/2356/schermatall5.jpg)
Title: Re: Background when posting new articles
Post by: Coursar on September 11, 2007, 13:11:58
Are you use background-image for body element? (in template)
Title: Re: Background when posting new articles
Post by: Seiyoku on September 11, 2007, 13:34:50

the background of my template is a gif, but it is set to #ffffff [white colour]

When I see it in the front end is black test on white background, but when I edit it I see the gif as in the screenshot.
Title: Re: Background when posting new articles
Post by: Coursar on September 11, 2007, 14:05:22
unzip it and put in the /templates/your_templates/css. Or change templates like this:

in index.php

Code: [Select]
<body id='bd'>

in template_css.css

Code: [Select]
#bd {
backgound: url('backgorund.gif) repeat;
}
...

[old attachment deleted by admin]
Title: Re: Background when posting new articles
Post by: Seiyoku on September 11, 2007, 16:18:22
ok,
thanks, now I try this modifications.

Thanks a lot Coursar