Preventing Actinic's CSS from overriding NorCascade

Another automatic cascading menu for Actinic 5 onwards. This one allows more modern DHTML effects.
Post Reply
norman
Site Admin
Posts: 1252
Joined: Sat Feb 07, 2004 9:55 pm

Preventing Actinic's CSS from overriding NorCascade

Post 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.
Norman
Post Reply