Update: Thanks to Timan, you no longer need to do anything on your part. NeoGAF now natively supports hiding of images inside spoiler tags! That was really fast, only a few tongue in cheek comment and then bam!
Some people opting for media blackouts for certain games voiced their requests for having images in spoiler tags. On NeoGAF, that doesn't work, but there's a temporary work-around until our overlords decide to implement it on the forum.
Install a user css extension like Stylish (for chrome), if your browser doesn't natively support it.
Define a user style sheet for NeoGAF, and add the following in it:
Here's an example:
Oh, look at the pixelated graphics
lol.
And here's how it looks when you have the user style:
More elegant methods can be used by the NeoGAF webmaster team. This is just a quick hack that doesn't modify the html and just styles existing elements.
You can make the spoiler area as big as the image if you have:
You can have a variety of styles for displaying spoilers by modifying the CSS:
Some people opting for media blackouts for certain games voiced their requests for having images in spoiler tags. On NeoGAF, that doesn't work, but there's a temporary work-around until our overlords decide to implement it on the forum.
Install a user css extension like Stylish (for chrome), if your browser doesn't natively support it.
Define a user style sheet for NeoGAF, and add the following in it:
span.spoiler img {
visibility: hidden;
}
span.spoiler:active img, span.spoiler.show img{
visibility: visible;
}
Here's an example:
Oh, look at the pixelated graphics
And here's how it looks when you have the user style:
More elegant methods can be used by the NeoGAF webmaster team. This is just a quick hack that doesn't modify the html and just styles existing elements.
You can make the spoiler area as big as the image if you have:
instead of display: inline, but tags become like paragraphs if there's too much text, not much of a problem for me actually.span.spoiler {
display: inline-block;
}
You can have a variety of styles for displaying spoilers by modifying the CSS: