Hi
Sorry to spam you with all those messages, but I find very interesting that you are using the "Standalone" mode for this site (it's exactly the kind of usage we were thinking about when we added that mode).
Can I suggest one thing: in the middle of the page, you have a small text: "Call Us Now XXX-XXX-XXXXX". I would suggest you replace this with a "tel" link, such as:
<p><a class="wb-action-link" href="tel:XXX-XXX-XXXXX">Call us at XXX-XXX-XXXXX »></a> </p>
You can then style the button like so:
p.wb-action-link {
margin-top: 3rem;
text-align: center;
}
a.wb-action-link, a.wb-action-link:visited, a.wb-action-link:focus, a.wb-action-link:active {
padding: 1em 2em;
margin: 1em 0;
background: #6E97CC;
color: #000000;
text-decoration: none;
box-shadow: none;
}
a.wb-action-link:hover {
background: #FFAC2F;
box-shadow: none;
}
This will give you:
1 - a nice visible call to action button
2 - When people click on that on their phone, they will actually be calling you directly, without having to copy/paste the phone number!
Rgds