Remove search bar from header menu on esc portal

Luke James
Tera Contributor

Hi All, 

 

I would like to know how to remove the search bar from the top of the esc portal.  Please see this image to know which one I mean. Screenshot 2025-01-16 at 20.46.53.png

 

Has anyone done this? And how did you do it? 

 

Kind Regards, 

Luke

1 ACCEPTED SOLUTION

Community Alums
Not applicable

Hi @Luke James ,

This seems to me a Custom Search Bar on your ESC Portal.

Best option is to talk to your internal developers who has worked on it to do the job for you OR you need to write a CSS and add to your Portal.

 

.header-search {
  display: none;
}

  

View solution in original post

1 REPLY 1

Community Alums
Not applicable

Hi @Luke James ,

This seems to me a Custom Search Bar on your ESC Portal.

Best option is to talk to your internal developers who has worked on it to do the job for you OR you need to write a CSS and add to your Portal.

 

.header-search {
  display: none;
}