Home Forums WoodMart support forum Information box svg bug Reply To: Information box svg bug

#300618

Hello,

The problem is caused by SVG itself: your SVG images have styles that are applied to the whole page. As a result, the styles of one SVG icon influence the other. In order to solve this, you need to insert inline styles without classes.

You can open your SVG image in any text editor and manually change styles to inline like is shown:
remove this <circle class="st0"></circle>
insert this instead: <circle style="color: #5сс0а8"></circle>

If you create SVG in Adobe Illustrator we would suggest exporting SVG with appropriate CSS properties in the first place. During export from Illustrator choose style attributes. You can read more about resolving this issue in Illustrator here https://cobwwweb.com/inline-style-attributes-svg-element

Best Regards