Is possible insert a background image in GuestBook ?
Thx...
I want a background image....
Hi,
Open file style.css in a PLAIN text editor (Notepad, Wordpad) and try changing:
to
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
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;
}
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 
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


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