Also, I'm trying to make the links change colors when you hover over them, but I can't get the codes to work. They don't show any error.
function Page::print_custom_head() {
"""
<style type="text/css">
a:link {
font-size: 8pt; text-decoration:none; cursor:default;
}
a:visited {
font-size: 8pt; text-decoration:none; cursor:default;
}
a:hover {
font-size: 8pt; text-decoration:none; color:#d0b0b0; cursor:default;
}
</style>
""";
}
Thanks in advance to anyone that takes the time to help me.