Weird Phone Number inserted on Mobile below Footer

No idea what is going on here. When I look at my phone on mobile there is a phone number that is inserted beneath the footer section. No idea where the number is coming from.

swiftknox.webflow.io

Could you please update your post with some more information so we can help you faster? Things like your read-only link really helps us to help you faster :slight_smile:

How to share a read-only link:

Thanks in advance! :slight_smile:

@AlexN - heres the read only - Link

The phone doesn’t appear in the desktop/mobile view in the Webflow designer. It only appears post being published in the browser, just to clarify.

  • thanks for any insight

chris

Did you solve this? I can’t see the number in Chrome or Safari on desktop or phone.

I also don’t see the number on the published site anymore. Have you sorted out the problem?

Yeah I solved the problem, but it raises another. The reason that phone number was present was cause of some custom HTML that I inserted to change the default phone number stylings on desktop and mobile from making the color blue. So that issues solved, but I still need to figure that color stuff out.

Thanks guys!

Not sure if you solved this, @ChrisConley, but this one’s a quick fix! Add this to your custom code under Site Settings to change phone number link color on mobile. You can change none to #FFF or any other color of your choice if you don’t want to inherit the default color:

<style>
  a[href^="tel"]{
    color:inherit;
    text-decoration:none;
}
</style>

This topic was automatically closed after 60 days. New replies are no longer allowed.