I'm attempting to create a click-to-call link on my website using the following:
<a class="mobile-only" href="tel:+534306464456"><p class="">Click Here to call us</p></a>
I want this link to only show up on mobile devices, specifically phones. I've tried the following CSS:
@media (max-width: 991px) {
.mobile-only {
display:block !important;
}
}
.mobile-only{
display:none !important;
}
However, it doesn't seem to be working. Is there another way I can achieve this?