You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
when I mark part of the text as a link, and try to change the color it doesn't effect it. It's true that it wraps link with font tag but it can't override link's style.
I found a quick workaround for this issue. Inside the url and color buttons I've added this code $('font[color]').each(function() { $(this).css('color', this.color); $(this).find('*').css('color', this.color); });
The code finds all font tags, take their color attribute value and set it as a style to all child elements. This will override any style for < a > tag.
@A-Kojic Thanks for the workaround, I'm afraid I have no time to optimize this recently. The contribution is always welcome if you can fix it in a good way.
Hi,
when I mark part of the text as a link, and try to change the color it doesn't effect it. It's true that it wraps link with font tag but it can't override link's style.
Example:
<font color="#ff0000"> <a href="http://google.com">Text</a> </font>
a { color: #2E8CFA; }
The text was updated successfully, but these errors were encountered: