change css for links in lessons?
-
I’m trying to customize the css for links (visited / unvisited) as they appear in the lessons. I can’t find the styling for this in the plugin css. Currently no styling is applied to links (you wouldn’t know they are there unless you hover over them and a pointer appears). I’d like to add basic styling to color unvisited links a dark blue and visited links a light blue… basically I’d like to do something like this:
<style>
a:link {
text-decoration: none;
color: #0065ff;
}a:visited {
text-decoration: none;
color: #2c7ef9
}a:hover {
text-decoration: underline;
}a:active {
text-decoration: underline;
}
</style>The page I need help with: [log in to see the link]
- The topic ‘change css for links in lessons?’ is closed to new replies.