Page 1 of 1

How to change design of search button....

Posted: Tue Jun 23, 2009 2:22 pm
by NRGy
Hi,
I want to change design of my search button.
How can i do that?
plz help, thanx

Re: How to change design of search button....

Posted: Thu Jun 25, 2009 8:30 am
by Peciura
Find some thing like

Code: Select all

<input name="submit" value="{$submittext}" type="submit" />
in Search module, "Search template", replace it with

Code: Select all

<input class="sub_button" name="submit" value="{$submittext}" type="submit" />
add style for your new "sub_button" class in your stylesheet

Code: Select all

input.sub_button{
	width:17px;
	height:17px;
	background-color: #C6D984;
	/*background-color: transparent;*/ 
	
	border: 1px solid #0A4C02;
	padding:0px;
	
	cursor:pointer;
	font-size: 10px;
	}

Re: How to change design of search button....

Posted: Sat Jun 27, 2009 6:44 am
by NRGy
Thanx, it works :)