Is there a way to hide (or remove) the search bar located above the 'Site Action' link and below the 'Welcome {User name}' for SharePoint 2007 web pages?

|
|
|
You have two options:
You can find a feature like this at Remove the Search Box from SharePoint Sites |
|||||||||
|
|
All the controls and styling for the search bar will be in your master page, whichever one you are using. You can select the control and add a display:hidden css tag to the div and this will hide the control. This method means the code for the search bar will be compiled so the page is not necessarily more lightweight, all it does is hide the control. If you actually want to remove the control completely, be careful of that because you may have trouble getting it back! Tal |
|||
|
|
This is added in the master page, hence removing the delegate control present in the master page should sove your problem. |
|||
|
|