I am using Zurb 6 and trying to hide some elements on small and medium screens using the visibility classes, however my desktop is being detected as a Medium Screen. Why is this?
My fullscreen width is 1920px, I have not altered the breakpoints (copied in below, and there is example code here that is being hidden on my desktop.
$breakpoints: (
small: 0,
medium: 640px,
large: 1024px,
xlarge: 1200px,
xxlarge: 1440px,
);
<!-- Signature -->
<div class="signature-container">
<div class="row signature">
<div class="large-7 columns">
<p>Thisi s some example text</p>
</div>
<div class="large-1 columns arrow hide-for-small hide-for-medium"> </div>
<div class="large-4 columns digital-signature text-center">
<img alt="Signature" src="img/signature.png" width="220">
</div>
</div>
</div>
<!-- /Signature -->