Open dragontamer8740 opened 2 years ago
content: url("/assets/logo.b6428fde.svg"); on a div does not seem to work on older browsers like Seamonkey/Pale Moon.
content: url("/assets/logo.b6428fde.svg");
This can be made to work (browser-side, on the live site) with the debugger in seamonkey by changing:
<div class="tss-1xyhqeq-logoImg">Memory Hole Logo</div>
To:
<img class="tss-1xyhqeq-logoImg" src="/assets/logo.b6428fde.svg" alt="Memory Hole Logo"/>
with no apparent ill effects except that the image moves up a pixel or two (only noticeable when A/B'ing).
content: url("/assets/logo.b6428fde.svg");
on a div does not seem to work on older browsers like Seamonkey/Pale Moon.This can be made to work (browser-side, on the live site) with the debugger in seamonkey by changing:
To:
with no apparent ill effects except that the image moves up a pixel or two (only noticeable when A/B'ing).