Announcement

Collapse
No announcement yet.

Changing fonts on naviagtion

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Changing fonts on naviagtion

    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

    #2
    '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.

    Comment

    Working...
    X