Hello There,
The email address hangs outside the container when there isn't enough room to display the whole length of the address. In this case, we can change the font size to be able to fit it within the container area. You can update the code and use this:
<div class="make-it-fit"><a href="tel:1-913-908-1995">1-913-908-1995</a></div>
<div class="make-it-fit"><a href="mailto:shawnswanson@dallaspersonalshopper.com" style="word-wrap: normal;outline: none;">shawnswanson@dallaspersonalshopper.com </a></div>
And then in your custom css section, you can add this:
@media(max-width: 767px){
.make-it-fit {
font-size: 12px;
}
}
Hope this helps.