Page 1 of 1

Change message box colour/font

Posted: Tue May 15, 2007 12:54 pm
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

Posted: Tue May 15, 2007 6:10 pm
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