In an effort to make my Knack app more user friendly for my staff I am looking to add a floating nav bar at the bottom of certain pages to make their links easy to find.
I have tried using this: How To Create a Fixed Menu
…and it works! However, when scrolling through tables, the table lines are showing over top of the nav bar.
I’m looking for a better solution, or a way to tell the code to make the nav bar not show the lines through it.
Brian1
April 29, 2022, 8:06pm
2
Have you tried to set the z-index? I had to add this to my app.
#knack-body #kn-app-header {
background-color: #C0C0C0 !important;
position: sticky;
top: 0;
z-index:200;
}
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
1 Like
Cool, I’ll give that a try - thanks!