SVG image circle error

Hi! I’m trying to import a .svg image as a silkscreen image. It’s basically a circle, with a black stroke and a white fill. Problem is, it still has a fill. This is my svg’s code:
<svg width='60' height='60'> <circle cx="30" cy="30" r="30" stroke="black" fill="white" /> </svg>
Help would be appreciated.

I’m unclear on why a white fill is bad. If you are looking for a transparent fill set fill=“none”. It may be easiest to upload the svg you are dealing with (the forum often doesn’t like uploading svgs, so rename it from .svg to .fzp and upload that, telling us it is really an svg). Upload is 7th icon from the left on the reply tool bar.

Peter

I’ll try fill=“none” and see.

Yay! fill=“none” worked! Thanks!