My app uses a bootstrap navbar-fixed-top. However, we now need to show another menu that will toggle open/close ABOVE the navbar-fixed-top.
My issue is with the CSS.
In order to open this menu (which does look similar to a 100% width navbar, its about 40px height), should I be pushing the body down? If I do that, the navbar-fixed-top still stays fixed to the top.
Or, is there another way to achieve this because I need to open this menu ABOVE the rest of the content.
onToggleOffersMenu() { this.showOffersMenu = !this.showOffersMenu }, and based on the state ofshowOffersMenu, I use ngClass to apply.showOffersMenu { margin-top: 40px }. I am using angular 2. - user1354934navbar-fixed-top, would it be better to push the body down? I just don't understand the requirement to be honest, it is kind of silly, but it is what it is :/ - user1354934