How can I override !important on custom CSS on flex block wordpress?

Viewed 32

I found this element of style and I need it to be text-decoration: none!important; But it is not working on the CUSTOM CSS. Can anyone help me?

Thank you

.element.style {}

.entry-content>*:not(.flex-block):not([class*="flo-"]) a:not(.wp-block-button__link),
.entry-content>a,
.flo-block-text__text>a {
  text-decoration: underline!important;
}

Adding screenshot to understand where should I go to edit the core CSS.

enter image description here

1 Answers

Have you tried something like this in your custom css:

body .entry-content>*:not(.flex-block):not([class*="flo-"]) a:not(.wp-block-button__link),
body .entry-content>a,
body .flo-block-text__text>a {
  text-decoration: underline!important;
}

Or adding some other class, id or element tag instead of "body".

Related