Top Nav Bar
Top Nav Bar
Good day, I am looking for a fix on the top Nav bar. I want the top nav bar to be displayed at all times rather than only after jumping into a table. Fix?
Re: Top Nav Bar
Create file
hooks/__bootstrap,php
, if not exists:Code: Select all
<?php
// file: hooks/__bootstrap.php
if (!defined('HOMEPAGE_NAVMENUS')) define('HOMEPAGE_NAVMENUS', true);
Kind regards,
<js />
My AppGini Blog:
https://appgini.bizzworxx.de/blog
You can help us helping you:
Please always put code fragments inside
AppGini 25.10 + all AppGini Helper tools
<js />
My AppGini Blog:
https://appgini.bizzworxx.de/blog
You can help us helping you:
Please always put code fragments inside
[code]...[/code]
blocks for better readabilityAppGini 25.10 + all AppGini Helper tools
Re: Top Nav Bar
Thank you JS! Worked like a charm.
What say you and this one? After updating last night to the new AG release, the top right hamburger button is so hard to see on mobile.
Thoughts for a fix?
What say you and this one? After updating last night to the new AG release, the top right hamburger button is so hard to see on mobile.
Thoughts for a fix?
Re: Top Nav Bar
I've not not updated, yet. So o cannot say.
Kind regards,
<js />
My AppGini Blog:
https://appgini.bizzworxx.de/blog
You can help us helping you:
Please always put code fragments inside
AppGini 25.10 + all AppGini Helper tools
<js />
My AppGini Blog:
https://appgini.bizzworxx.de/blog
You can help us helping you:
Please always put code fragments inside
[code]...[/code]
blocks for better readabilityAppGini 25.10 + all AppGini Helper tools
Re: Top Nav Bar
As quick fix add this to your CSS file or footer-extras.php
Code: Select all
.navbar-default .navbar-toggle .icon-bar {
background-color: #ffffff;
}
Re: Top Nav Bar
Didn’t work, I even tried
.navbar-default .navbar-toggle .icon-bar {
background-color: #ffffff !important;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #ffffff !important;
}
Re: Top Nav Bar
In the current northwind demo the following works:
can you give it a shot with your app and revert with the results?
Code: Select all
button.navbar-toggle > span.glyphicon-menu-hamburger {
color: white !important;
}
Re: Top Nav Bar
I am using the flatty.css
I tried adding to flatty.css and to the footer-extra in the hooks. Nothing! It is driving me nuts.
I tried adding to flatty.css and to the footer-extra in the hooks. Nothing! It is driving me nuts.
Re: Top Nav Bar
Which version of AppGini are you on? is there a URL that you can share for the app? can you inspect the element from the browser and screenshot the css class, id, etc.?
Re: Top Nav Bar
I got it! CSS was cached. Cleared and works great, thank you 

Re: Top Nav Bar
Glad it finally worked out 
