Change the font color of navigation link

Change the font color of navigation link

Libby Ferguson發表於
Number of replies: 3
I'm a new moodle user. I'm using moodle 1.9.5 and theme "Learning-Horizon".
Right now the color of navigation link on top of moodle page (which is the text like: Home>Administration>Appearance) iss white and it turns to blue when the link is choose. This make students hard to see the navigation link.
Is there a way to change the color into black for example?

Please help me with this problem. Thank you.

評比平均分數: -
In reply to Libby Ferguson

Re: Change the font color of navigation link

Patrick Malley發表於
To change the color of the link when it's not being hovered over:

.breadcrumb a:link {
color:#000;
}

To change the color of the link when it is hovered over:

.breadcrumb a:hover {
color:#000;
}

To change the color of the link when it is not hovered over, but has been followed before:

.breadcrumb a:visited {
color:#000;
}

This would, of course, go into your themes CSS file.
評比平均分數:Useful (1)
In reply to Patrick Malley

Re: Change the font color of navigation link

Nichole Bryant發表於

In a SCORM activity there is an Exit Acivity option in the naviagation bar. How do I change the color of that. The source code is below:

<li class="first"><a  onclick="this.target='_top'" href="http://www.excelncollege.com/theprogram/">eNc-Home</a></li><li> <span class="accesshide " >/&nbsp;</span><span class="arrow sep">&#x25BA;</span> <a  onclick="this.target='_top'" href="http://www.excelncollege.com/theprogram/course/view.php?id=2">PowerPlan</a></li><li> <span class="accesshide " >/&nbsp;</span><span class="arrow sep">&#x25BA;</span> <a  onclick="this.target='_top'" href="index.php?id=2">SCORMs/AICCs</a></li><li> <span class="accesshide " >/&nbsp;</span><span class="arrow sep">&#x25BA;</span> Chapter 1, Welcome to College</li></ul></div>
        <div class="navbutton"><a href="http://www.excelncollege.com/theprogram/course/view.php?id=2" title="Exit activity">Exit activity</a> </div>

Where do I change the "navbutton"?
In reply to Nichole Bryant

Re: Change the font color of navigation link

Mary Evans發表於

When you say a SCORM activity does this page POP-UP or does it manifest itself as a normal page with/or without sideblocks? Also which version of Moodle are we discussing here?

You would normally make changes in the .css file or files depending on which theme.

Mary