
Originally Posted by
rufussweetwater
I just ended up using the <marquee>...</marquee> tags cause it was the easiest and I didn't have to worry about the BGcolor and I just had to apply a span class to get my text format right. so I'm good for now.
Although i would like to know this; say i have a link in my scrolling marquee, how do i change the color of that link to look like the rest of the text and only have an underline signifying that its a link?
Try somthing like this for the html
Code:
<a class="scrolllink" href="whereever.html"> Link Text </a>
and this for the css
Code:
a.scrolllink {
font-size:whatever;
font-color:whatever;
text-decoration:underline;
}
BTW, you should know that the marquee tags are no longer considered valid, so you may find yourself with browser problems with it.