Tap To Email

Discussion in 'ColorWay WordPress Theme' started by rlculver, May 21, 2015.

  1. rlculver

    rlculver New Member

    Joined:
    Dec 31, 2012
    Messages:
    19
    Likes Received:
    0
    Hi,
    I really like the Tap Call button on the mobile site.

    Can we add a extra button for 'Tap To Email'?

    Thanks
     
  2. sameerwalkar

    sameerwalkar Guest

    Hello,

    Could you please provide your site URL so that I can look after it and assist you accordingly.
     
  3. rlculver

    rlculver New Member

    Joined:
    Dec 31, 2012
    Messages:
    19
    Likes Received:
    0
  4. praveen

    praveen Support Staff

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

    You have to add it manually in the header.php file of the theme.

    Please follow the screenshot given below.
    colorway_add_tap_to_email.png
    PHP:
    <div class="tap_to_email">
    <
    a href="#"Tap to Email </a>
    </
    div>
    Now, paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .tap_to_email {
      display: none;
    }
    @media only screen and (max-width: 480px){
    .tap_to_email a {
      padding: 14px 32px !important;
      background: #0D59C1 !important;
      border-radius: 5px;
      color: white;
      border: 1px solid #186ECC;
    }
    .tap_to_email {
      text-align: center;
      margin-top: 10px;
    display:block ;
    }
    }
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .tap_to_email a {
      padding: 14px 32px !important;
      background: #0D59C1 !important;
      border-radius: 5px;
      color: white;
      border: 1px solid #186ECC;
    }
    .tap_to_email {
      text-align: center;
      margin-top: 10px;
    display:block ;
    }
    }
    Thanks,
    Praveen
     

Share This Page