html - Phone Icon to only appear on mobile view -
on website have phone icon on mobile view can click on phone icon , ring business, can't figure out how have appear on mobile view.
<style type="text/css"> #tel {display:none;} @media , (max-width: 1000px) { #tel {display:block;} } </style> <div class="tel"> <a href="tel:555-555-5555"><img src="images/phone.png" /></a> </div>
#tel
refers id, have use
.tel
in css
Comments
Post a Comment