White bar with code inside

Hi. I’m very new to this website builder and need some help please. My new website has been published but at the very top, it has a thin white bar with code inside it (like opening times and days etc) when viewed on a pc. It’s even worse on my phone or iPad as the white bar is large with the same code in it. How can I hide it? thanks in advance for your time in reading this.

1 Like

Why don’t you send a link can we can all see it?

Rich the Weather Guy

Done Richard

Hi @Wanners

Did you edit your code manually somewhere to add schema?
Because I see this in the source code:

{  "@context": "https://schema.org",  "@type": "LocalBusiness",  "name": "White Tiger Martial Arts",  "url": "https://www.white-tiger-tkd.com/",  "telephone": "+44 7722 584919",  "address": "Wheatpieces Community Centre"  "@type": "PostalAddress",  "streetAddress": "Columbine Rd, Walton Cardiff",  "addressLocality": "Tewkesbury",  "postalCode": "GL20 7SP",  "addressCountry": "GB"  },  "openingHours": "Mo,We 19:00-21:00, Fr 19:00-20:30, Sa 11:45-12:30"}  

Which is exactly what is causing that white bar.

1 Like

After a second look it seems you did and tried to implement json-ld schema.
In essence, your schema code seems correct, however you’re missing the script tag in front and after the schema code.

This is the corrected version:

<script type="application/ld+json">
{  "@context": "https://schema.org",  "@type": "LocalBusiness",  "name": "White Tiger Martial Arts",  "url": "https://www.white-tiger-tkd.com/",  "telephone": "+44 7722 584919",  "address": "Wheatpieces Community Centre"  "@type": "PostalAddress",  "streetAddress": "Columbine Rd, Walton Cardiff",  "addressLocality": "Tewkesbury",  "postalCode": "GL20 7SP",  "addressCountry": "GB"  },  "openingHours": "Mo,We 19:00-21:00, Fr 19:00-20:30, Sa 11:45-12:30"}  
</script>

Can you try it that way?

1 Like

@brechtryckaert, thank you so much, that has fixed the issue. I appreciate your help. :folded_hands:t2:

2 Likes

Hi @Wanners

Nice website - and good to see your work.

I just had a quick look to see your site now you fixed it and I have noticed the image in the hero is taking a long time to load here - and on mobile you do have text hanging off the page on the 2 area’s I have added on the image showing.

I have not checked much more - as off out.

Cheers

Thanks for your observations.

1 Like

Happy to help and welcome to the forum!