Currently utilizing Zurb's Foundation for the construction of my website, where I have integrated two action buttons within a callout section.
My objective is to create space between the two buttons up to tablet-sized screens by applying the medium-offset- class.
<div class="callout large">
<div class="row column text-center">
<h3>Lorem ipsum dolor sit amet.</h3>
<a href="#" class="button medium-2">Some Button</a>
<a href="#" class="button medium-2 medium-offset-2 hollow">Another Button</a>
</div>
</div>
However, after implementation, the outcome maintains the typical gutter space between the buttons. It seems that the CSS styling for .button overrides the margin adjustment from medium-offset-
Check out this example on jsfiddle to see the issue firsthand. Even rearranging the order of button and medium-offset- elements in the HTML did not resolve the problem.https://jsfiddle.net/u356n5cs/
I've attempted targeting the buttons individually with an ID or using .named_div > a to add space, but it compromises the central alignment of the content.