Tap to call

Discussion in 'Slice WordPress Theme' started by spoonboy90, Aug 23, 2013.

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

    spoonboy90 Active Member

    Joined:
    Dec 20, 2012
    Messages:
    289
    Likes Received:
    28
    Location:
    Stoke-on-Trent, Staffordshire. UK
    To the right of my logo I only display the Telephone number, is it possible to have this removed only when the tap to call button is displayed?

    thanks
     
  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: 767px) and (min-width: 480px){
    .header-info p {
    display: none;
    }
    }
    @media only screen and (max-width: 480px){
    .header-info p {
    display: none;
    }
    }
    This will solve your issue.
     
  3. spoonboy90

    spoonboy90 Active Member

    Joined:
    Dec 20, 2012
    Messages:
    289
    Likes Received:
    28
    Location:
    Stoke-on-Trent, Staffordshire. UK
    Spot on Gourav Thank You
     
Thread Status:
Not open for further replies.

Share This Page