How can I change the link colour?

How can I change the link colour?

by Mel Kerr -
Number of replies: 6
Hi

I am brand new to Moodle and I am a bit overwhelmed by it all!! It looks great but I don't know how I'll ever grasp it all! Anyway I am trying to change the theme slightly and to my amazement have managed to get my logo on the site. I would like to change the link colour from the standard blue to something else but try as I may I can't work out how to do it. WOuld someone please be able to advise me? Thanks. Mel. smile
Average of ratings: -
In reply to Mel Kerr

Re: How can I change the link colour?

by Maryel Mendiola -
Hi Mel smile


at your folder Theme you're going to see css files, and

user_style.css (for custom corner)

or

fw_color.css (for formal white)

or

styles_color.css (for standar


just look your theme, and find a css that contains the next lines;

change to color you prefer your links


a:link,
a:visited {
color: #800000;
text-decoration: none;
}

or

a:link,
a:visited {
color: #f98f11;
text-decoration: none;
}


or


a:link,
a:visited {
color: #f98f11;
text-decoration: none;
}



Don't forget save and upload it again to your theme folder (I do it through FTP)


cheers


Average of ratings: Useful (1)
In reply to Maryel Mendiola

Re: How can I change the link colour?

by Mel Kerr -
Thanks Maryel, I really appreciate you taking the time to help. I'll give it a try smile
In reply to Mel Kerr

Re: How can I change the link colour?

by Mel Kerr -
Hmm it still doesn't seem to be working.

This is the css page i have configured. Everything works except for the link colour. The site practice page is here www.photographycampus.com/site

y {
background-color: #fffff;
}

body, table, td, th, li {
font-family: Arial,Helvetica,sans-serif;
}

.sideblock .header {
background-color: #66CC00;
}

td.content {
background-color: #fff;
}

.forumpost {
-moz-border-radius-bottomleft:20px;
-moz-border-radius-bottomright:20px;
-moz-border-radius-topleft:20px;
-moz-border-radius-topright:20px;

body#course-view .headingblock {
background-color: #fff;
}


#course-view .weekscss .section, #course-view .section td.side {
background:#666b6e none repeat scroll 0% 0%;;
}

a:link,
a:visited {
color: #f98f11;
text-decoration: none;
}
In reply to Mel Kerr

Re: How can I change the link colour?

by Maryel Mendiola -
You're welcome Mel smile




In reply to Maryel Mendiola

Re: How can I change the link colour?

by bruce boman -
Maryel,

What about if you wanna change the color of a single word in your moodle page?