Ticker Tape again

tHello everybody. I’ve included a “ticker tape” to my website by putting a markup at the desired position and put in:

 <marquee direction="left" behavior="scroll" scrollamount="4" scrolldelay="0" style="color: #FFFFFF;font-size:24px;font-family:quicksand;" >
> +++ Unsere Highlights im November +++ Das Gewinnspiel und neue Produkte von TEOXANE LipUnique Collection! Info hier! <a href="http://www.example.com/">INFO HIER!</a>
> </marquee>

Now is there a way to get the hyperlink not to appear in blue? I´d like it to be white.
Help is appreciated.

If you make a style named marquee a then it will govern any link inside a marquee. That’s the whole trick, you don’t need to do anything except make that style. If you are using Freeway, the simplest way to do this is to open Page / Extended and select either After HEAD or Before /HEAD in the picker. Paste in this code:

<style type="text/css">
marquee a {
  color: white;
}
</style>

You can obviously change white into whatever you like: #ffe or some other tint.

Walter

Wow. Works like a charm. Thanks a lot!