Change message box colour/font

Dr. GBooky is here to help you with your guestbook problems ...
Post Reply
jman
Posts: 1
Joined: Tue May 15, 2007 12:50 pm

Change message box colour/font

Post by jman »

Script URL: findmadeline.com/gb
Version of script: latest
Hosting company: Micfo
URL of phpinfo.php: dont know
URL of session_test.php: dont know
What terms did you try when SEARCHING for a solution: none

Write your message below:

I want to change the following and dont know how

The message box colour/font colour
Remove security code
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Post by Henrie »

The message box colour/font colour
To change the message box color (I think you mean comments textarea in which the comments are typed in the Sign guestbook page) open the style.css file.

Find

Code: Select all

input {
	font-size: 11px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	color:#000000;
	background-color:#FFFFFF;
}
Below that add:

Code: Select all

textarea  {
	font-size: 11px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	color:#000000;
	background-color:#FFFFFF;
}
Change the background-color entry to your desired background color.
To change the font color change the color entry.
Font-size and font-family speak for themselves.

Remove security code
In the settings.php file, find

Code: Select all

$settings['autosubmit']=1;
and change the value from 1 to 0.

Greetings,
Henrie
Post Reply