Remove Tap to Call button on mobile site

Discussion in 'BlackBird WordPress Theme' started by jtsanders3, May 5, 2013.

Thread Status:
Not open for further replies.
  1. jtsanders3

    jtsanders3 New Member

    Joined:
    Apr 17, 2013
    Messages:
    5
    Likes Received:
    0
    I use the Blackbird theme and am trying to get rid of the "Tap to Call" button on the mobile version of our site. I have tried putting the following code in custom css, but the button still appears. Please help! Our website is www.waypointonline.org.

    Thank you-
    John Sanders

    Code used:
    .header-info {
    display: none;
    }

    Also, I used:
    @media only screen and (max-width: 480px){
    .call-us a.btn {
    display: none!important;}}
     
  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-info a.btn {
    display: none;
    }
    }
    This will solve your issue.
     
  3. jtsanders3

    jtsanders3 New Member

    Joined:
    Apr 17, 2013
    Messages:
    5
    Likes Received:
    0
    That worked perfectly - thank you!
     
Thread Status:
Not open for further replies.

Share This Page