Fixed navigation bar doesn't work with admin bar
-
Hey,
I’m making my own theme with a fixed navigation bar on the top of the page. Unfortunately it doesn’t work when WordPress admin bar is enabled. I have tried couple of different fixes without luck.
/* Makes fixed top navigation bar */ .fixed { position: fixed; top: 0px; height: 70px; z-index: 1; } /* Does NOT fix the issue with admin bar */ .admin-bar .fixed { top: 32px; } @media screen and ( max-width: 782px ) { .admin-bar .fixed { top: 46px; } }
It seems like my theme’s css file doesn’t have ‘access’ for .admin-bar. All the tips are very welcome! Thanks.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Fixed navigation bar doesn't work with admin bar’ is closed to new replies.