Hi. I would like to set the default link color to blue. By default, I mean the color property of unvisited and active links. Right now, each time my customer uses the link icon to insert a link, the link shows up as white. When I click on the link icon, the color property is not set, and if I forget to set it in the dialog box, the link, when inserted into the page, is always white. There is a style section in the template we are using that addresses link color, but it tied to a specific class we created:
.smnavigation a,a:visited,a:active{
color:#FFFFFF;
font-family:arial;
font-size:12px;
text-decoration:none;
text-transform:uppercase;
font-weight:bold;
}
.smnavigation a:hover{
color:#EAECCA;
}
The link we are inserting are not assigned to a class, so shouldn't they show up in blue (standard link color) if no class or styleis applied to them?
Thanks