Rendering
Moderator: Basilisk-Dev
-
- Moon Magic practitioner
- Posts: 2367
- Joined: 2018-05-05, 13:29
Re: Rendering
Woah, is this site poorly written!
It breaks because the text is actually the alt-text of an img element without a source (the src attribute) and what's more each image is declared as display: inline-block , which breaks the alignment. It seems the actual image, whatever it is supposed to be, was meant to be given through CSS using content: url(...), but it doesn't work because the data: URI is broken.
You should get in touch with the people running this site and ask them to place the encoded SVG inside the src attribute, since they are already able to tell which cell gets which image as they provide the good and na classes.
It breaks because the text is actually the alt-text of an img element without a source (the src attribute) and what's more each image is declared as display: inline-block , which breaks the alignment. It seems the actual image, whatever it is supposed to be, was meant to be given through CSS using content: url(...), but it doesn't work because the data: URI is broken.
You should get in touch with the people running this site and ask them to place the encoded SVG inside the src attribute, since they are already able to tell which cell gets which image as they provide the good and na classes.
-
- Pale Moon guru
- Posts: 37392
- Joined: 2011-08-28, 17:27
- Location: Motala, SE
Re: Rendering
Maybe also ask them to add Pale Moon to the lineup while they're at it 

"A dead end street is a place to turn around and go into a new direction" - Anonymous
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
-
- Moon Magic practitioner
- Posts: 2367
- Joined: 2018-05-05, 13:29
-
- Pale Moon guru
- Posts: 37392
- Joined: 2011-08-28, 17:27
- Location: Motala, SE
Re: Rendering
Oh yes because doing actual work is so ridiculous.
"A dead end street is a place to turn around and go into a new direction" - Anonymous
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
-
- Hobby Astronomer
- Posts: 18
- Joined: 2024-02-07, 02:11
-
- Lunatic
- Posts: 387
- Joined: 2019-03-16, 13:26
- Location: Qld, Aus.
Re: Rendering
Here's a Modify HTTP Response filter to replace the alt text with characters.
Code: Select all
[["privacytests.org",["/",["/alt=\"Passed\"/g","alt=\"✔\"","/alt=\"Failed\"/g","alt=\"❌\"","/alt=\"Unsupported\"/g","alt=\"-\""]]]]
-
- Hobby Astronomer
- Posts: 18
- Joined: 2024-02-07, 02:11
Re: Rendering
Perfect... you are a genious!!!



You do not have the required permissions to view the files attached to this post.
-
- Fanatic
- Posts: 120
- Joined: 2021-07-27, 04:20
Re: Rendering
@adoxa your HTTP replacements deserve to have their own repository, thanks a ton!