Changing the outline black of an SVG to a different color

What parts of the code control the black outline?

This should be simple, why can’t I figure this out?

The SVG is too large to fit in here.

I replaced all #000 with red, and that did absolutely nothing.

Look at the paths that don’t have stroke defined, just fill.

I just did this.
How do you change the color of the black lines?

Like I said, you need to define stroke for those that just have fill.

So fill=“blue” becomes stroke=“red” fill=“blue” or whatever colors you want

1 Like

Got it, thanks!!

I was only able to get this far.

I’m missing the rest of it.

What would I look for next?

or, is that as far as it goes?

You need to increase the value of stroke-width

stroke-width=".036"

This is visible, but I think you don’t want to have it quite that large. Try to modify the number to get it to where you want it to go.

stroke-width=".5"

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.