
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2020 02:27 PM
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:
After hovering over where the menu icon should be:
Is there anyway other then not using a white Navbar background that I can make the menu display?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2020 11:58 AM
Sure. It's the second line in the html. <nav class="navbar-inverse">
Change the class from navbar-inverse to navbar-default.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2024 05:43 PM
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.
Johnny
Please mark this response as correct or helpful if it assisted you with your question.