Friday 7 December 2012

Remove Search box in Blogger Dynamic View


Blogger dynamic view search box is my main reason to like it! But if you want to remove it, I wont argue with you! The search box, placed at the top-right corner of your blog page can be removed by short and simple step using CSS display:none method,

BEFORE


AFTER



STEP:-
Go to Dashboard ('House' symbol) --> Template --> Customize --> Advanced --> Add CSS --> Paste the following code --> Press enter after the last character of the last line } --> Apply to Blog --> Done



.header-bar
 #search
{
       display: none !important;
}


No comments:

Post a Comment