I didnt realize you were looking to use a link instead of just regular text. just replace the span with an achor tag

Originally Posted by
boogyman
Code:
var marqueecontent='<nobr><span class="heading">Dont Forget To Bookmark Us</span></nobr>';
Code:
span.heading {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
color: #FF0000;
}
Code:
var marqueecontent='<nobr><a href="somewhere.html" class="heading>Link</a></nobr>';
Code:
a.heading:link, a.heading:visited, a.heading:hover, a.heading:active {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
color: #f00;
}
and you can make a specific style for each of the anchor pseudo selectors, by just taking them out of that list and create their own style with whatever changes to the original. but you should follow convention of
link
visited
hover
active
or LoVe HAte those links
Bookmarks