i'd like to remove the search bar/function from my menu bar
how can i do this please?
i'd like to remove the search bar/function from my menu bar
how can i do this please?
At the end of style.css add!
#searchform {
display: none;
}
HTH
David
you can remove the code form header.php (?);
look for a section like:
<form role="search" method="get" id="searchform" action="http://www.ronniewhittaker.com/" >
<div><label class="screen-reader-text" for="s">Search for:</label>
<input type="text" value="" name="s" id="s" />
<input type="submit" id="searchsubmit" value="Search" />
</div>
</form>
or you can 'hide' it with css, edited in style.css where the style of #searchform is, or added to style.css at the end:
#searchform {display:none;}
cheers guys !
You must log in to post.