Forum Moderators: not2easy
I have set my links up for a certain colour and to be underlined, but on my navigation bar I want them to be black and not underlined....I am having trouble changing then as when i set the URL they changed to the colour set in properties inspector.
How can i get this link text to be in colour i want it.
Thanks Geoff Boult
<style type="text/css">
A.navlink {
color:red;
}
.text A {
color:blue;
}
</style>
And in your navigation HTML something like this:
<a class="navlink" href="somewhere">Navigation Link</a>
And in your main text
<p class="text">
...<a href="somewhere_else">Text Link</a>...
</p>