I have a bootstrap, 3 column web page. Currently there is a small amount of space between each column that I would like to remove. How can I do this without editing the bootstrap.css file? Thank you.
<div class="container">
<div class="row">
<div class="col-md-2">
<div class="customDiv">
<div id="collapsible-panels">
<p><a href="#">Question One goes here?</a></p>
<div><p><a href="page2.html">Page 2</a></p></div>
<p><a href="#">Question Two goes here?</a></p>
<div><p>Answer to Question Two goes here.</p></div>
<p><a href="#">Question Three goes here?</a></p>
<div><p>Answer to Question Three goes here.</p></div>
</div>
</div>
</div>
<div class="col-md-8">
<div class="customDiv">Main Content Area</div>
</div>
<div class="col-md-2">
<div class="customDiv">Right Side Bar</div>
</div>
</div>
</div>