Hello,
I have R.A.D Editor with its css class. I want to add hover state to the style that I use in the HyperLink Manager.
Can you give me an example how to do this.
Thanks in advance
1 Answer, 1 is accepted
0
Rumen
Telerik team
answered on 25 Nov 2008, 04:31 PM
Hi Marin,
The content area of RadEditor is editable IFRAME. The editable IFRAMEs offer hover effect for links only in Firefox.
To achieve this effect, you should set the CssFiles property to point to an external css file containing the following pseudo classes:
a:link {color: #FF0000} /* unvisited link */
a:visited {color: #00FF00} /* visited link */
a:hover {color: #FF00FF} /* mouse over link */
a:active {color: #0000FF} /* selected link */
Another way is to just put these classes on the page with the editor inside style tags and the editor will pick up them automatically.
Best regards,
Rumen
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.