Hello.
Thank you for the information! I'm looking for a solution to make a custom help for on-premise BC. Due to HtmlFromRepoGenerator with GitHub cannot be used to make a website, I try to combine that tool with on-premise BC help that can be deployed from the installer. And it seems it looks fine to me except for one thing: the DOCFX menu. The menu looks fine for a small resolution but the menu expands automatically if the resolution becomes higher.
Here is the code related to that menu:
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">
<img id="logo" class="svg" src="logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
Is there a way to remove that menu, maybe during conversion via DocFX? Or maybe there is some hint with CSS styles to fix it?
Thank you!