PDA

View Full Version : Changing fonts on naviagtion


clairec
01-Apr-2003, 12:03 PM
Hi,
I am trying to change the font and colour of the links on the navigation bar. I looked at Act_navigationItem.html and it seems I need to change span class="actxxsmall"

I tried making changes in Design - options but it changes the colour of the links on the sections not in the navigation bar.

I looked at actnic.css but not sure which item controls the navigation text.

Can anyone help?
Thanks,
Claire

cdicken
02-Apr-2003, 03:11 PM
'actxsmall' is just a style that is used in the Actinic themes to make text a bit smaller.

What you can do is create a new style within actinic.css called something like 'customnav' and with an entry like this in the css file:

.customnav{font-size:x-small;font-family:arial;color:red;}

You can then use <span class="customnav">...</span> tags wherever you want this style to be used.