I am using Bootstrap v3.3.7 with Apostrophe CMS. My navbar is a fixed navbar using the navbar-fixed-top
style which has the following css
.navbar-fixed-top {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
top: 0;
border-width: 0 0 1px;
}
How can I make all of the Apostrophe admin widgets always display above my fixed navbar? Is there a way I can just increase the z-index globally or something with some css override? It looks like this
Which is obviously ugly and intrusive.