Hi there,
I have the following Bootstrap HTML which collapses a left hand column with a button.
What I would like to do is to have the button in the left hand column like it is now, but when the left column is collapsed, the button is still visible - I guess somehow I need to tell it to have some padding or margin when in collapsed mode?
How would be best to do this?
Thanks!
<div class="row" id="row-main">
<div class="col-md-3" id="sidebar">
SIDEBAR
<div class="btn-group" role="group" aria-label="Controls">
<button type="button" class="hotel-sidebar btn btn-primary toggle-sidebar">COLLAPSE BUTTON</button>
</div>
</div>
<div class="col-md-9" id="content">
<div>
CONTENT
</div>
</div>
</div>