Hi John,
As mentioned in my last reply, here are the specifics of the DnnBooster skin that allows you to have a Bootstrap fixed-top menu displaying below the Dnn Controlbar when logged in:
First you need to add a style class in your css file:
.admin { top: 53px !important; z-index: 9; }
Secondly add an extra class, 'controlbarfix' to the Bootstrap nav tag:
< div class="navbar-fixed-top controlbarfix" >
Then you need to add some
$(function () {
if ($('form').hasClass('showControlBar')) $('.controlbarfix').addClass('admin');
});
The JS checks to see if a class 'showControlBar' is being used (this is used when you are logged in), if it exists it will inject a second class, 'admin', to the Bootstrap nav tag which forces the fixed-top nav down by 53 pixels.
If the skin is not using the fixed-top but uses a page wrapper tag, add 'controlbarfix' to the wrapper tag. that will do the same thing.
I hope this helps you out,
Regards,
Geoff.