this post was submitted on 08 Mar 2025
4 points (100.0% liked)
WordPress
711 readers
2 users here now
A place to talk about WordPress the open source content management system. Also a place to ask for help with WordPress. Don't be rude, don't spam.
I check this once a week, so if you don't hear from me hit me up on Mastodon ([email protected])
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Difficult to say without seeing the HTML and CSS you've mentioned. My first guess was that it could be "pointer-events: none" was the cause but I believe that would stop the URL hover too, so not likely to be that.
I'm not too sure of your experience in non-wordpress web dev so I apologise if this is a stupid question, but have you inspected the html in browser? You'd likely get a much clearer idea of what's going on under the hood and could inform a fix
Thanks for your response! I've done quite a bit of sitting on inspect element, I don't believe there is anything affecting pointer events or touch events, as I cannot see anything there, unless there's something I should add to enable them?
I believe if it is an issue, it would be touch-action that needs to be acted upon, I'll take a look now
Edit: seems that adding
touch-action: auto !important
to the anchor css did the trick! Thank you for pointing me in the right direction!Nice, good job fixing the issue