Hi modernmagic,
After Open the file templates/t3_bs3_blank/tpls/blocks/mainnav.php the replace the code:
<nav id="t3-mainnav" class="wrap navbar navbar-default t3-mainnav" data-spy="affix" data-offset-top="70">
Open the templates/t3_bs3_blank/less/navbar.less and then replace the style rule:
.t3-mainnav {
border-left: 0;
border-right: 0;
margin-bottom: 0;
border-radius: 0;
With the following code:
.t3-mainnav {
border-left: 0;
border-right: 0;
margin-bottom: 0;
border-radius: 0;
left: 0;
right: 0;
top: 0;
z-index: 999;
&.affix .t3-navbar-category.home {
.module-ct {
display: none;
}
&:hover {
.module-ct {
display: block;
}
}
}
Once it's done, please compile LESS to CSS.
Hope this help!