Does anyone have a snippet to replace the Solar2D svg on line 37 of the regular index.html with a custom image (bitmap)? I’m sure I can figure it out, but it’s been a lot of years since I wrote any html, and I’m hoping someone has already done the work for me…
1 Like
It turned out to be incredibly easy.
I saved my logo as a svg file, opened the svg file and index.html
in VSCode and replaced everything from <svg ... >
to </svg>
in index.html
with <svg ... >
to </svg>
from the image file and set height="50%"
and width="50%"
.
Worked great!
2 Likes