The page showcased in the provided jsfiddle link includes a sidebar within the content div.
<section class="cont">
<div class="sidebar">
<ul>
<li>sidebar</li>
</ul>
</div>
<div class="content">
<div class="cm_logo"><img src="img/turf_cm_logo.png"></div>
</div>
</section>
The sidebar is styled with a right border and has a 10px margin at the top. The request is to add a similar bottom margin as well. Despite using 100% height to make the div.sidebar fill up the screen, the margin at the bottom is not visible due to the sticky footer implementation. Suggestions on how to achieve this are welcomed. Your assistance is appreciated.
Refer to the jsfiddle linked above for a demonstration of the issue described.