08-17-2021 16:07
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

08-17-2021 16:07
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
I have a widget with css that defines the fill for the widget.
In my style.css I want to override that color.
I'm trying fill: #ffffff !important;
Its not working...
Anyone know how to do this?

08-17-2021 16:17
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post


08-17-2021 16:17
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
!important isn't supported.
Make sure your selector's specificity is high enough.
Gondwana Software

08-18-2021 13:30
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

08-18-2021 13:30
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
- Who Voted for this post?
Thanks Gondwana,
Based on on your suggestion...
I think I'm going to wrap my element in my component in a svg and put the style at the parent svg. Then my app css can target the child element of the svg directly.
