• I tried to change the color of the comment buttons but couldn’t. Only number one turns red.

    #wpd-editor-toolbar-0_0 > [type="button"] {
    		color: red !important;
    	fill: red !important;
    	stroke: red !important;
    }

    https://postimg.cc/bSGPNxyn

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Themeover

    (@bastywebb)

    Hey,

    I think this might only be working on the number one because fill is inherited, but stroke isn’t (and the number color is set with fill) That’s my guess anyway, based on the fact that targeting the lines directly should solve it. So try this selector instead:

    #wpd-editor-toolbar-0_0 > [type="button"],
    #wpd-editor-toolbar-0_0 .ql-stroke {
    		color: red !important;
    	fill: red !important;
    	stroke: red !important;
    }

    I hope that helps!

Viewing 1 replies (of 1 total)
  • The topic ‘How to color the SVGs in the comment buttons?’ is closed to new replies.