Hey There,
The call button is added in the menu and the menu is only visible in desktop. To create a call button for mobile screens, please do the following:
1.) In your child theme’s functions.php file, please insert this custom code:
function add_call_button(){
echo '<a id="call_button" class="right mam" href="tel:8552022138" style="color: white;"><span><i class="x-icon x-icon-phone" data-x-icon="" aria-hidden="true"></i></span></a>';
}
add_action('x_after_view_global__brand', 'add_call_button');
2.) And in your child theme’s style.css, please add this code:
#call_button {
display: none;
}
@media(max-width: 979px){
#call_button {
display: inline-block !important;
}
}
3.) You might need to remove the call button you added in your menu link if you do not want to display it in desktop screens.
Hope this helps. Please let us know how it goes.