I need to change the color of text enclosed by the "U" tag using an already defined color in HTML.
This is how it appears in the HTML:
<u> <font color="#0000c0">somente no seu e-commerce</font> </u>
I have attempted the following CSS code:
u {color: rgb (20,20,20)! important; }
However, the color does not apply. I suspect it's because the color is defined in the source code.
An important note: I am unable to modify the HTML directly as it is generated by web software. All layout changes must be made exclusively through CSS.