Disable "Tap to Call"??

Discussion in 'BlackBird WordPress Theme' started by drum_it, Nov 2, 2012.

  1. drum_it

    drum_it New Member

    Joined:
    Sep 4, 2012
    Messages:
    1
    Likes Received:
    0
    Hi,

    how can i deactivate the "Tap to Call" button??

    Thanks in advance!
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    @media only screen and (max-width: 767px) {
    .header-info a.btn {
    display:none;
    }
     
    }
    @media only screen and (max-width: 480px) {
    .header-info a.btn {
    display:none;
    }
     
    }
     

Share This Page