In Woocommerce, I am using the code from this answer thread, and it works, except the border does not extend around the content:
Does anyone know how to fix this?
In Woocommerce, I am using the code from this answer thread, and it works, except the border does not extend around the content:
Does anyone know how to fix this?
You need a clearfix before closing the div with the border.
<div class="clear"></div>
Then in CSS
.clear { clear: both; }
Or you could just inline the style:
<div style="clear: both"></div>