# Prevent words in logos being detected as text

**URL:** https://meta.discourse.org/t/prevent-words-in-logos-being-detected-as-text/358982
**Category:** UX
**Created:** [March 26, 2025, 4:18pm UTC](https://meta.discourse.org/t/prevent-words-in-logos-being-detected-as-text/358982 "2025-03-26T16:18:56Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![Richie](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/richie/32/115110_2.png) [@Richie](https://meta.discourse.org/u/Richie)
#### Post date: [March 26, 2025, 4:18pm UTC](https://meta.discourse.org/t/prevent-words-in-logos-being-detected-as-text/358982/1 "2025-03-26T16:18:56Z")

</div>

Can we stop words in logos being detected by some browsers? 🤔

I’m unsure if this is an iOS / macOS issue, a Safari issue, or an issue that reaches wider.

The amount of times per day that I click on the logo on my Discourse logo, expecting to be taken to the homepage, only for my browser to decide it can see a word and it wants to know what I want to do with the text in the image that it’s just very cleverly highlighted and selected 🤦

eg:

 ![Screenshot 2025-03-26 at 16.12.26](https://global.discourse-cdn.com/meta/original/4X/2/7/e/27e39153a953ac182d118da161ebe7d26c163213.jpeg)

and:

 ![Screenshot 2025-03-26 at 16.12.40](https://global.discourse-cdn.com/meta/original/4X/5/9/c/59c8f507a1fe3f42aaec8a8a179a844364841b2c.jpeg)

🤦

Is there some magic that can be applied to that element in the top corner to tell the browser to _not_ try and interpret the text in these logos and instead to just action the click back to the homepage?

Anyone else with words in their logos struggling with this issue?

---

<div class="post-metadata">

### Author: ![supermathie](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/supermathie/32/507518_2.png) [@supermathie](https://meta.discourse.org/u/supermathie)
#### Post date: [March 26, 2025, 4:28pm UTC](https://meta.discourse.org/t/prevent-words-in-logos-being-detected-as-text/358982/2 "2025-03-26T16:28:51Z")

</div>

To confirm; this is Safari’s Live Text feature?

> **[Live Text | Apple Developer Forums](https://developer.apple.com/forums/tags/live-text)**
>
> Connect with fellow developers and Apple experts as you give and receive help on Live Text

Unfortunately, the [Live Text Documentation](https://developer.apple.com/documentation/livetext) link is broken so we can’t look up how to disable it for a specific image.

I do note people asking for this on their forums with no response:

> **[Security Verification](https://discussions.apple.com/verify-human/verify.html?next=%2Fthread%2F255825382)**
>
> Security verification page to protect against malicious bots.

You could disable this system-wide on your machine?

---

<div class="post-metadata">

### Author: ![Arkshine](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/arkshine/32/298682_2.png) [@Arkshine](https://meta.discourse.org/u/Arkshine)
#### Post date: [March 26, 2025, 4:32pm UTC](https://meta.discourse.org/t/prevent-words-in-logos-being-detected-as-text/358982/3 "2025-03-26T16:32:38Z")

</div>

This CSS may help:

```css
#site-logo {
  user-select: none;
  pointer-events: none;
}

```

It should reduce the browser’s OCR capability from interfering with the logo.

I quickly tried it with Safari on a test instance, and it seems to work.

---

<div class="post-metadata">

### Author: ![Richie](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/richie/32/115110_2.png) [@Richie](https://meta.discourse.org/u/Richie)
#### Post date: [March 26, 2025, 4:56pm UTC](https://meta.discourse.org/t/prevent-words-in-logos-being-detected-as-text/358982/4 "2025-03-26T16:56:36Z")

</div>

> [@supermathie](#):
>
> You could disable this system-wide on your machine?

But we can’t disable it on the machines of all our community members 😊

> [@Arkshine](#):
>
> This CSS may help:

Fantastic, I’ll try it tonight, thanks 😁

---

<div class="post-metadata">

### Author: ![NateDhaliwal](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/natedhaliwal/32/313494_2.png) [@NateDhaliwal](https://meta.discourse.org/u/NateDhaliwal)
#### Post date: [March 26, 2025, 11:11pm UTC](https://meta.discourse.org/t/prevent-words-in-logos-being-detected-as-text/358982/5 "2025-03-26T23:11:21Z")

</div>

> [@supermathie](#):
>
> on their forums

That’s not Discourse 👀

---

<div class="post-metadata">

### Author: ![supermathie](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/supermathie/32/507518_2.png) [@supermathie](https://meta.discourse.org/u/supermathie)
#### Post date: [March 27, 2025, 3:47am UTC](https://meta.discourse.org/t/prevent-words-in-logos-being-detected-as-text/358982/6 "2025-03-27T03:47:00Z")

</div>

I know!

I’m as disappointed as you are 😭

---

<div class="post-metadata">

### Author: ![Richie](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/richie/32/115110_2.png) [@Richie](https://meta.discourse.org/u/Richie)
#### Post date: [March 27, 2025, 8:26am UTC](https://meta.discourse.org/t/prevent-words-in-logos-being-detected-as-text/358982/7 "2025-03-27T08:26:47Z")

</div>

> [@Arkshine](#):
>
> This CSS may help

Early tests are looking good!

Thanks again @Arkshine this should save all our Safari users a lot of clicking 😃
