To practice five things under all circumstances constitutes perfect virtue; these five are gravity, generosity of soul, sincerity, earnestness, and kindness. - Confucius

Tuesday, June 25, 2013

Add stylish search box to your blog

A search box helps visitors to access specific information on your website or blog. So adding a search engine enhances blog page view & keep readers stick to the site.

Here is the code for search box.
<style>
#abt-search-btn {
    background: none repeat scroll 0 0 #359BED;
    border: 0 none;
    border-radius: 0 0 0 0;
    color: #FFFFFF;
    font-weight: 700;
    padding: 10px 20px;
}
#abt-search-box {
    background: none repeat scroll 0 0 #EEEEEE;
    border: 0 none;
    padding: 10px;
    width: 250px;
}
</style>
<form id="searchthis" action="/search" style="display:inline;" method="get">
<input id="abt-search-box" name="q" size="40" type="text" placeholder="  imzas "/>
<input id="abt-search-btn" value="Search" type="submit"/>
</form>