Page 1 of 1

Preventing Actinic's CSS from overriding NorCascade

Posted: Sat Aug 19, 2006 5:02 pm
by norman
On some sites Actinic's CSS for anchor tags is overriding the NorCascade menu style. Putting the following into NorCascade / Styles / Text Styles seems to fix things.

Code: Select all

.lowText { text-decoration: none; color: #000000; font-size: 12px; font-family: arial, helvetica, sans-serif; text-align: left; vertical-align:middle } 
a.lowText { text-decoration: none; color: #000000; font-size: 12px; font-family: arial, helvetica, sans-serif; text-align: left; vertical-align: middle } 
.highText { text-decoration: none; color: #FF0000; font-size: 12px; font-family: arial, helvetica, sans-serif; text-align: left; vertical-align: middle } 
a.highText { text-decoration: none; color: #FF0000; font-size: 12px; font-family: arial, helvetica, sans-serif; text-align: left; vertical-align: middle }
The .lowText and .highText entries will affect the popout indicator ( > ) and the a.lowText and a.highText will affect the displayed links.