View Single Post
11-23-2007, 11:05 AM
#2
Haris is offline Haris
Status: Request a custom title
Join date: Dec 2005
Location:
Expertise:
Software:
 
Posts: 2,741
iTrader: 9 / 100%
 

Haris is on a distinguished road

  Old

Replace this:

Code:
#searchform #s {
	width: 100px;
	height: 22px;
	padding: 4px 5px 0px 5px;
	border: 1px dotted #cc7fa7;
	background: #121605;
	margin-right: 2px;
	color: #cc7fa7;
	font-weight: normal;
}
With:

Code:
#searchform #s, #shoutboxname, #chatbarText {
	width: 100px;
	height: 22px;
	padding: 4px 5px 0px 5px;
	border: 1px dotted #cc7fa7;
	background: #121605;
	margin-right: 2px;
	color: #cc7fa7;
	font-weight: normal;
}
AND

Replace this:

Code:
/* search form button - to specify button only use input[type="submit"] */
#searchform input {
	background: #121605;
	border: 1px dotted #cc7fa7;
	width: 25px;
	height: 28px;
	font: bold 12px Arial, Helvetica, sans-serif;
	color: #cc7fa7;
	vertical-align: middle;
}
With:

Code:
/* search form button - to specify button only use input[type="submit"] */
#searchform input, #submitchat {
	background: #121605;
	border: 1px dotted #cc7fa7;
	width: 25px;
	height: 28px;
	font: bold 12px Arial, Helvetica, sans-serif;
	color: #cc7fa7;
	vertical-align: middle;
}