0

I use a single Tumblr post as my homepage / splash page (http://winder.space)- I'll never add another post.

But, it is a photo post; and I'm trying to figure out how to edit the CSS theme so that the photo is NOT clickable whatsoever. Any ideas?

I cannot simply delete the {LinkOpenTag} and {LinkCloseTag}s, which appear twice (once under <div class="post photo"> and once under <div class="post panorama">).

Thanks!

Mr Lister
  • 45,515
  • 15
  • 108
  • 150

3 Answers3

5
#object>a {pointer-events: none;}

will do the trick.

However, I have to advise on creating a Minimal, Complete and Verifiable Example here, on StackOverflow, as after you would have applied the fix on your website, your question will be a lot less helpful for future visitors.

tao
  • 82,996
  • 16
  • 114
  • 150
0

Use pointer-events to disable events on photo :-)

style="pointer-events: none;"

Flash Thunder
  • 11,672
  • 8
  • 47
  • 91
0

You can try to enter the following rule in your stylesheet:

a[href="http://winder.space/image/156268872048"] {
    pointer-events: none;
}
Ralph David Abernathy
  • 5,230
  • 11
  • 51
  • 78