I have a nav bar header with various items on a right alignment. I have set the overflow to hidden on the surrounding div (Toolbox) so that if the screen size changes the header hides under the left hand brand div.
On the nav bar I have placed a bootstrap-ui dropdown. When it is clicked and shown it is cut off by the overflow of the Toolbox div. If I remove the overflow it shows fine, but then i have the issue where the overflow will be seen on a reduced screen size.
How do you enable the drop down to be shown whilst keeping any nav bar content hidden if shrunk?
<div id="ToolBox">
Some really important text that shouldn't wrap with a reduced width screen
<span class="dropdown" dropdown on-toggle="toggled(open)">
<a href class="dropdown-toggle" dropdown-toggle>
Period:{{currentPeriod.Description}}
</a>
<ul class="dropdown-menu">
<li id="periodSelector" ng-model="currentPeriod" ng-repeat="period in periodList track by period.PeriodId">
{{period.Description}}
</li>
</ul>
</span>
<div id="SiteTitle" class="ng-binding">myApp</div>
</div>