Skip to main content

Hi all,

 

Hopefully an easy answer but I just can’t get it myself.

I am new to customising the portal and haven’t got much experience with css/html.

 

I am trying to remove the solutions option from the header menu.

From looking around I have been able to remove onboarding, offboarding and the service catalog with the below code:

 

#emp-onboarding-list,#main-nav > div.main-nav-items > a.employee_onboarding.ficon-employee-onboarding{
  display:none !important;
}

#emp-offboarding-list,#main-nav > div.main-nav-items > a.employee_offboarding.ficon-employee-offboarding{
  display:none !important;
}

#catalog-list,#main-nav > div.main-nav-items > a.catalog.ficon-service-catalog{
  display:none !important;
}

 

However, I can’t seem to figure out what needs to be done for the solutions?

I have tried altering the above and changing the necessary fields to be solutions, for example:

#solutions-list,#main-nav > div.main-nav-items > a.solutions.ficon-solutions{
  display:none !important;
}

 

I’m sure it’s a simple change I’m missing but I can’t figure it out, any help would be great.

Thanks!

I figured it out, feel a bit silly now.

Just had to inspect in dev tools and found it, code below to help anyone in case:

 

#knowledge-base-list,#main-nav > div.main-nav-items > a.solution.ficon-knowledge-base{
  display:none !important;
}