When you visit this website and resize the browser window to reveal the toggle buttons, clicking on either one will only expand the dropdowns to a small portion of the screen width. I would like both dropdowns to stretch out and fill 100% of the available space.
I've experimented with CSS styles by directly entering them into the Firebug console. For example, typing the following code increases the font size and strangely affects the width of the expanded dropdown menu (larger text occupies more space)...
$('.collapse.in').css({"font-size":"20pt"});
However, I haven't been successful in adjusting the width of the dropdown menus themselves when they are not collapsed.
Am I overlooking something obvious?