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.
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.
.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.
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 " >/ </span><span class="arrow sep">►</span> <a onclick="this.target='_top'" href="http://www.excelncollege.com/theprogram/course/view.php?id=2">PowerPlan</a></li><li> <span class="accesshide " >/ </span><span class="arrow sep">►</span> <a onclick="this.target='_top'" href="index.php?id=2">SCORMs/AICCs</a></li><li> <span class="accesshide " >/ </span><span class="arrow sep">►</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"?