Service Portal Menu now showing in mobile browser.

Brian Lancaster
Tera Sage

We are planning to make our Navbar background white.  However I noticed that when I you go to mobile view it is not showing the menu unless you hover over where it show be.

Mobile View:
find_real_file.png

After hovering over where the menu icon should be:
find_real_file.png

Is there anyway other then not using a white Navbar background that I can make the menu display?

1 ACCEPTED SOLUTION

Sure.  It's the second line in the html.  <nav class="navbar-inverse">

Change the class from navbar-inverse to navbar-default.

View solution in original post

10 REPLIES 10

JohnnySnow
Kilo Sage

Just an update that this can be achieved without cloning the widget and by just modifying the theme as below:

 

1. Application Navigator> Portals

2. Open the current portal record. Check what theme is being used. Open that theme.

3. Scroll down and add below code:

 

.navbar-toggle.ng-scope.collapsed {
background-color: #000000;
}

OR

.navbar-toggle {
background-color: #000000;
}

 

whichever works for your instance.

Thanks
Johnny

Please mark this response as correct or helpful if it assisted you with your question.