| | |||||
| ||||||||
| CODE This forum is for posting code snippets and example scripts that aren't quite tutorials, but could be useful for others. You may post code snippets and/or completed scripts that you've written and want to share here. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Member Join Date: Nov 2006
Posts: 192
![]() | How to change background in PHP i was wondering how to change the background on my php site. http://chattergogo.net/ is my site and i dont like the white background. How do i cange it? sorry im new to stuff like this. Thanks in advance for the help.
__________________ Enemy At The Six!! |
| |
| | #2 (permalink) |
| NamePros Regular Join Date: Mar 2006
Posts: 432
![]() ![]() | find this line /* This is the border line & background colour round the entire page */ .bodyline { background-color: #FFFFFF; border: 1px #98AAB1 solid; } and change the FFFFFF to the color number/letters you want. I am pretty sure I am right p.s. if you want it to match your outer border the color code you want to put in the place of FFFFFF is CC0000 |
| |
| | THREAD STARTER #3 (permalink) |
| NamePros Member Join Date: Nov 2006
Posts: 192
![]() | ok thank you
__________________ Enemy At The Six!! |
| |
| | #4 (permalink) |
| NamePros Regular Join Date: Mar 2006
Posts: 432
![]() ![]() | while your at it you may as well change this too /* This is the outline round the main forum tables */ ????: NamePros.com http://www.namepros.com/code/289882-how-to-change-background-in-php.html .forumline { background-color: #e31b1b; border: 2px #006699 solid; } /* Main table cell colours and backgrounds */ td.row1 { background-color: #ff3131; } td.row2 { background-color: #ff3131; } td.row3 { background-color: #ff3131; } I chose the colors but you do what color you want this will change the colors of the forum tables p.s. maybe you might want to use this instead of the one you have. just something quick that matches your bacgroud color http://www.g33k.info/images/chat.jpg
Last edited by proudcanadians; 02-03-2007 at 11:22 PM.
|
| |