Hello,
- The following code should work fine:
<a href="#" data-toggle="modal" data-target="#contactFormModal" class="btn-link">Email us to see how we can help you</a>
<a href="#" data-toggle="modal" data-target="#contactFormModal" class="btn-link nomargin d-block d-md-none">Send an Email</a>
If you are still facing issues with this, please provide us with a Live URL so that we can check out the exact issue and provide you with more accurate codes. Thanks for your Patience.
- This appears to be an error with the VerticalMiddle Functionality on iPhoneX Devices. Please find the following code in the js/functions.js File inside the verticalMiddle: function() Function Block:
if( $body.hasClass('device-sm') || $body.hasClass('device-xs') )
and replace it with:
if( $body.hasClass('device-md') || $body.hasClass('device-sm') || $body.hasClass('device-xs') )
This should fix the issue. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.