Page 1 of 1

I want a background image....

Posted: Mon Jul 11, 2005 9:34 pm
by Mastrus
Is possible insert a background image in GuestBook ?

Thx...

Posted: Mon Jul 11, 2005 11:08 pm
by Klemen
Hi,

Open file style.css in a PLAIN text editor (Notepad, Wordpad) and try changing:

Code: Select all

BODY, TD { 
color : black; 
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; 
font-size: 11px; 
}


to

Code: Select all

BODY, TD { 
background-image: url(http://www.you.com/image.gif); 
background-color: white; 
color : black; 
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; 
font-size: 11px; 
} 
Change the URL to your background image. You should also always set background color (background-color: white; ) in case the image is not available.

More info about CSS: http://www.w3schools.com/css/css_intro.asp

Regards