I’m playing around with this character sheet: A DnD Character sheet I made using Canvas! (complete with working deathsaves counter)
which uses some images as backgrounds in canvas. But I’d like to use LOCAL images instead of referring to imgur.
.callout[data-callout-metadata~=profile-img]::before {
content: "";
width:100%;
height: 100%;
display: block;
position: absolute;
top: 0;
background-image: url("https://i.imgur.com/l9cPUkm.png");
background-size: 100% 100%;
}
works, but
using background-image: url(../../Assets/profile-img-overlay.png);
does not. I’ve tried all combinations I could think of of relative, absolute paths, with single and double quotes.
are local background images in CSS for Obsidian not possible?
Thanks