Hi,
I want to change design of my search button.
How can i do that?
plz help, thanx
How to change design of search button....
Re: How to change design of search button....
Find some thing like
in Search module, "Search template", replace it with
add style for your new "sub_button" class in your stylesheet
Code: Select all
<input name="submit" value="{$submittext}" type="submit" />
Code: Select all
<input class="sub_button" name="submit" value="{$submittext}" type="submit" />
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....
Thanx, it works 
