You need to sign in to do that
Don't have an account?

Is there a way to remove the search box in the header?
Hi,
Is there a way to remove the search box in the header? I need to provide my own search feature and ideally I can keep the search box but make it return the search results in the format I want it to look. Is there a way to do this?
Thanks!
bob_buzzard's solution is good. Here is the code:
I wished this was just a configuration and not so tightly integrated into chatter (what does this have to do with chatter!).
All Answers
You can't configure this as far as I'm aware.
You might be able to do it via javascript embedded in an HTML area in the sidebar, though it wouldn't work for pages that don't include the sidebar (reports and dashboards at least).
Here's a post from Jason Venable (aka TehNrd) which removes buttons using this technique - to adapt for your situation you'll need to locate the search elements and hide those:
http://www.tehnrd.com/show-and-hide-buttons-on-page-layouts/
Hi,
There is a way to remove global search box which is displayed in header i.e, in salesforce, by default search
box is assoiciated with chatter and also connected to all objects.So go to chatter setting and disable chatter setting
check box.Then you may find search box in not avilable.
Thanks!
bob_buzzard's solution is good. Here is the code:
I wished this was just a configuration and not so tightly integrated into chatter (what does this have to do with chatter!).
Hi Bob,
I want to remove search box from reports and dashboards also.. how can I achieve this.
Thanks and Regards,
Haripriya
You can't - you have no way to influence those pages.
Community Builder -> Branding Editor -> Edit Custom CSS (pencil icon)
Then add this:
visibility: hidden
}
This Worked .
2023 Solution in CSS
.themeSearch { visibility: hidden;}