This is what I call a 'Simple Workaround' to get more than one message on a marquee without the messages having to be scrunched together. I'm showing it here with the marquee tag, but it will also work with a crossbrowser javascript. Although the cursor is set to default so you don't get a hand, as you can see, the 'hidden link' refreshes the page- just in case it inadvertantly gets clicked on. The other links on the page will be unaffected by the link attributes in the marquee because it's in a class by itself. One other, probably obvious note... the 'hidden link text' should be the same as the bgcolor... here it's #FFFFFF.
<html>
<head>
<title>marquee withStyle</title>
<style type="text/css">
<!--
a:link {color:#3366FF;text-decoration:none;}
a:visited {color:#33FFFF;text-decoration:none;}
a:hover {color:#00FF00;text-decoration:underline;}
.withStyle a:link {color:#FFFFFF;text-decoration:none;cursor:default;}
.withStyle a:visited {color:#FFFFFF;text-decoration:none;cursor:default;}
.withStyle a:hover {color:#FFFFFF;text-decoration:none;cursor:default;}
// -->
</style>
</head>
<body bgcolor="#FFFFFF">
<center>
<table border=0 cols=1 width="300">
<tr>
<td class="withStyle">
<marquee style="color: #3366FF; font-family: Arial; font-size: 12pt; font-weight: bold" bgcolor="#FFFFFF">Would you like more than 1 message? <a href="javascript:location.reload()"> THIS LINK WILL REFRESH THE PAGE </a> How about setting it up like this... <a href="javascript:location.reload()"> THIS LINK WILL REFRESH THE PAGE </a> The possibilities are almost endless!</marquee>
</td>
</tr>
</table>
</center>
</body>
</html> OK, Who stopped payment on my reality check?
<html>
<head>
<title>marquee withStyle</title>
<style type="text/css">
<!--
a:link {color:#3366FF;text-decoration:none;}
a:visited {color:#33FFFF;text-decoration:none;}
a:hover {color:#00FF00;text-decoration:underline;}
.withStyle a:link {color:#FFFFFF;text-decoration:none;cursor:default;}
.withStyle a:visited {color:#FFFFFF;text-decoration:none;cursor:default;}
.withStyle a:hover {color:#FFFFFF;text-decoration:none;cursor:default;}
// -->
</style>
</head>
<body bgcolor="#FFFFFF">
<center>
<table border=0 cols=1 width="300">
<tr>
<td class="withStyle">
<marquee style="color: #3366FF; font-family: Arial; font-size: 12pt; font-weight: bold" bgcolor="#FFFFFF">Would you like more than 1 message? <a href="javascript:location.reload()"> THIS LINK WILL REFRESH THE PAGE </a> How about setting it up like this... <a href="javascript:location.reload()"> THIS LINK WILL REFRESH THE PAGE </a> The possibilities are almost endless!</marquee>
</td>
</tr>
</table>
</center>
</body>
</html> OK, Who stopped payment on my reality check?