I want a background image....

Dr. GBooky is here to help you with your guestbook problems ...
Post Reply
Mastrus

I want a background image....

Post by Mastrus »

Is possible insert a background image in GuestBook ?

Thx...
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post 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
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Post Reply