How do I make 2 objects in Inkscape to have the same Path-ID?

Submitted by BautyArg on August 12, 2025
Really, I can't get it fixed, how do I make the shades of Ethiopian Holy Sepulcher to be one answer and not many of them with the same type-ins?

I must to fix this in my quiz :(

6 Comments
+1
Level 83
Aug 12, 2025
Don’t you just make them all the same path by using the merge function or whatever? Couldn’t you also put them all in a group and make the group id the answer?
+1
Level 52
Aug 12, 2025
When merged the color shades also merge, and with groups it doesn't make green-ish when correctly answered
+1
Level 83
Aug 12, 2025
You can definitely do the group method and turn them green with css styling if you know how to do that. I have found that shapes within groups in JetPunk usually turn green as normal. Is there text AND shape in the group? Anyway, you can make anything any colour you want when guessed correctly. Put this in your style section:

.svg-holder .svg-correct {

fill: (put the #code for JetPunk’s correct colour here, I forget it);

}

Now, if it’s shapes AND text, you’ll need to let the site know to only apply this to the shapes (or your text being green on a green background will be unreadable). Anyway, if that’s the case, the code’s almost exactly the same. Give your shapes that you want to turn green an extra class. Say, or whatever. Then you can do:

.svg-holder .svg-correct.greenify {

fill: (put the #code for JetPunk’s correct colour here, I forget it);

}

+1
Level 83
Aug 12, 2025
JetPunk correct is #33FF33.
+1
Level 52
Aug 16, 2025
So, I should add any class for that?
+1
Level 52
Aug 18, 2025
Oh wow, I added with Ctrl+shift+X the attribute 'class' and the name 'correct'. And it worked!!!