How do you reference style.css in any of the topic pages? I created an aboutUs class in my CSS and want to use it on the t-about.aspx page.
How do you reference style.css in any of the topic pages? I created an aboutUs class in my CSS and want to use it on the t-about.aspx page.
The store references style.css through the skin the topic is using. Please refer to the SkinID column of Topic table.
The only thing I see is Applies Only To Skin. I can't find SkinID column of Topic table.
I am using ML 8.0.1.2. Would that make a difference?
Make sure the <property name="CssFiles"> property in your /RadControls/Editor/configfile.xml file points to the CSS file you want to use, and the style should show up in the Style dropdown in the Telerik RAD editor you use to edit the topics.
Scott - that worked perfeclty! Thank you very much!
Hi! Scott
If I want to change the visited color of product to "Green".. where and which tag I need to modify in CSS. I am using Skin_1
Thank you in advance.
Sohan
Last edited by sohan; 10-09-2009 at 02:42 PM. Reason: skin name
That should be {root}/skins/Skin_1/style.css and do a find action on a:visited
Hi! jao
When I change the color here. It does reflect only for active and link not for visited
a:active, a:link
{
color: #990000;
text-decoration: none;
}
I even try to separate them like this
a:visited
{
color: #990000;
text-decoration: none;
}
a:visited
{
color: #FF0000;
text-decoration: none;
}
It still does not reflected. What's wrong I did?
help appreciated.
Sohan
Have you tried clicking it? a:visited attributed won't be reflected if it's not triggered.
Yes, I have tried. When I changed color for active and link. It does reflect. But don't know why it is not reflected for visited!!!!!!!!!
Could you tell me what browser you're using?