create search menu in your blog

to beautify and increase the tools you have blog you can add the search menu itself - by using HTML script with the following script

add the previous css script

#searchform {
margin: 0px;
padding: 0px;
overflow: hidden;
display: inline;
}
#sbutt {
background: #000;
color: #FFFFFF;
font-size: 11px;
font-family: Arial, Tahoma, Verdana;
margin: 0px 0px 0px 3px;
padding: 2px;
border: 1px solid #ffffff;
font-weight: bold;
}

next step insert HTML code to any position you want

<form action='/search' id='' method='get' style='display:inline;'><input id='searchform' name='q' size='20' type='text'/> <input id='sbutt' type='submit' value='Go'/></form>

No comments:

Post a Comment