This topic is locked

Changing Page Background

7/25/2006 6:06:42 PM
PHPRunner General questions
M
mmponline author

I cant find a place to change the background color of the default template's page. I use topstyle and can change the style.css but cna't find the place to change the background color of the pages. From the current white, to whatever. I'm sure it must be possible to change it in *.css somewhere and it's different throughout the project.

Thanks for who ever!

J
Jane 7/26/2006

Stephan,
you need ro modify background for the .shade, .blackshade, .blackshade:hover and .rowselected classes in the incluse/style.css file.

M
mmponline author 7/26/2006

Thanks for your reply Jane.

Unfortunately this I knew already. My need is to change the background of all the pages <body bgcolor=E0DFE3> at once in the style.css with topstyle or other way. I searched the pages and found that each generated page has the <body bgcolor=E0DFE3> tag in the page. I can change it there, but that means if I generate the project again, I'll have to change the pages manually again.
Is there no way to do it (maybe by adding some command to the style.css file) to make sure it's the same alover and generated the same each time?

J
Jane 7/26/2006

Hi,
to change background of all pages add following code to the include/style.css file:

BODY

{

background : #FFF0F5;

}

M
mmponline author 7/28/2006

Thanks Jane, works perfectly! You are a great support team...