This may be what you are looking for. You can add these to your <head> tag:
<style>
a:active {
font-size: 12px;
font-weight: bold;
color: #4B7292;
text-decoration:none;
}
a:link {
font-size: 12px;
font-weight: bold;
color: #4B7292;
text-decoration:none;
}
a:visited {
font-size: 12px;
color: #4B7292;
font-weight: bold;
text-decoration:none;
}
a:hover {
font-size: 12px;
font-weight: bold;
color: #4B7292;
text-decoration: underline;
}
</style>
Change the properties however you want. This will change the properties for hyperlinks on your page.
J
|