Sara was more than explicit, you can decide if you want all underlined or not, and in your CSS stylesheet, where you have:
Code:
a:link {
color: #0066cc;
}
a:visited {
color: #0066cc;
}
a:hover {
color: #ff9900;
}
a:visited:hover {
color: #ff9900;
}
you can change to
Code:
a:link {
color: #0066cc;
text-decoration: none;
}
a:visited {
color: #0066cc;
text-decoration: none;
}
a:hover {
color: #ff9900;
text-decoration: none;
}
a:visited:hover {
color: #ff9900;
text-decoration: none;
}
OR
Code:
a:link {
color: #0066cc;
text-decoration: underline;
}
a:visited {
color: #0066cc;
text-decoration: underline;
}
a:hover {
color: #ff9900;
text-decoration: underline;
}
a:visited:hover {
color: #ff9900;
text-decoration: underline;
}
Well, or you can leave it as it is...
BTW, I liked the design
Bookmarks