Hi.
I found a workaround for making link color and other stuff work WYSIWYG in FCKeditor.
I did a search on !important on this site and found none, so here you have it:
.yourclass a { color: #FFFFFF !important; text-decoration:underline; }
.yourclass a:hover { color: #FF0000 !important; text-decoration:underline; cursor:pointer !important; cursor:hand !important; }
found the use of the "word" "!important" on mozilla here:
http://www.mozilla.org/unix/customizing.html
Hope someone else can make use of it.
Now things looks even greater in Firefox.
Thu, 09/22/2005 - 03:19
#1
RE: Firefox link styling workaround here!
that's been around since CSS 1.0
http://www.w3.org/TR/CSS1#important
RE: Firefox link styling workaround here!
The problem is that using FCKeditor in Firefox with links ... did not display the correct link styling.
This problem has been reported on this site and I have not seen a workaround / solution for it... untill now ...
RE: Firefox link styling workaround here!
rules that need !important applied to them usually imply that there is another rule elsewhere which is over-riding the needed behaviour.
If I come across the problem I will try solve it so that "special case" css is not required, and will post the solution.