Hi, I really like the Tap Call button on the mobile site. Can we add a extra button for 'Tap To Email'? Thanks
Hello, Could you please provide your site URL so that I can look after it and assist you accordingly.
Hello! You have to add it manually in the header.php file of the theme. Please follow the screenshot given below. 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