Replying to
Comment
I'm looking at your current page and unfortunately, it seems your CRT code and your Krueger code are conflicting with each other. The CRT sets body::before
to be fixed at top: 0; left: 0;
, whereas the Krueger code sets the same pseudo-element to be fixed at bottom: -150px; right: -100px;
.
As a very hacky workaround, you could try changing the code for Krueger to use nav::before
. Because if I understand the code correctly, all you need for it to work is a visible element that appears only once on the page. Can't guarantee this will be bug-free though.
body:before { content: ''; position: fixed; bottom:-150px; right: -100px; width: 400px; height: 400px; background-image: url(/api/util/ext/image?img=https://i.postimg.cc/MZRfhndG/Untitled798-20241013020157.png); background-size: contain; background-repeat: no-repeat; z-index: 1000; pointer-events: none; }
It's This one, I hope?