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

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -