How to remove Tap to call on when the website is in mobile view?

Discussion in 'RoadFighter WordPress Theme' started by matlars, Jun 3, 2013.

  1. matlars

    matlars Member

    Joined:
    Feb 19, 2012
    Messages:
    92
    Likes Received:
    0
    I have built up header bit to make room for a high log and then "Tap To Call 'in the way when the website is scaled to mobile view, so how do you change so when the website gets mobile view the phone number disappears instead of doing a picture with "tap to call"?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    @media only screen and (max-width: 480px){
    .header_wrapper .call-us {
    display:none;
    }
    }
     

Share This Page