remove "tap to call"-button on mobile

Discussion in 'ButterBelly WordPress Theme' started by mwnow, Apr 9, 2015.

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

    mwnow Member

    Joined:
    Sep 23, 2013
    Messages:
    82
    Likes Received:
    3
    Hi,

    how can I remove the tap to call button? We don´t need them ;)

    Thanks, Greetings Miriam
     

    Attached Files:

  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hey, Miriam!

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .call-us a.btn {
      display: none !important;
    }
    }
    @media only screen and (max-width: 480px){
    .call-us a.btn {
      display: none !important;
    }
    }
    Thanks,
    Praveen
     
  3. mwnow

    mwnow Member

    Joined:
    Sep 23, 2013
    Messages:
    82
    Likes Received:
    3
    Great :)

    it works... thank you very much!
     
Thread Status:
Not open for further replies.

Share This Page