InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)KB /kbin meta @kbin.social readbeanicecream @kbin.social 2y ago Can I override custom styles for magazines? Is there a way to configure kbin to ignore custom css on magazines?
Nothing built in but there are tampermonkey scripts for it on the @kbinstyles magazine. I think it was in the pinned post.
I'm using kbin Magazine Style Toggle to disable the custom styling on certain magazines, but I had to modify line 36 to make it work: 36c36 < let style = document.querySelector("head > style:nth-child(22)"); --- > let style = document.querySelector("head > style:nth-of-type(1)");
You already got a solution to this, but an alternative mechanism for people who use uBlock Origin is to add this filter to your custom list:kbin.social##^styleThat assumes you're on kbin.social, obviously substitute in your home kbin instance.
Nothing built in but there are tampermonkey scripts for it on the @kbinstyles magazine. I think it was in the pinned post.
@atocci thanks I will check it out.
I'm using kbin Magazine Style Toggle to disable the custom styling on certain magazines, but I had to modify line 36 to make it work: