Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

marquee withStyle

Status
Not open for further replies.

tryangle

Technical User
Mar 19, 2001
49
US
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=&quot;text/css&quot;>
<!--
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=&quot;#FFFFFF&quot;>
<center>
<table border=0 cols=1 width=&quot;300&quot;>
<tr>
<td class=&quot;withStyle&quot;>
<marquee style=&quot;color: #3366FF; font-family: Arial; font-size: 12pt; font-weight: bold&quot; bgcolor=&quot;#FFFFFF&quot;>Would you like more than 1 message? <a href=&quot;javascript:location.reload()&quot;> THIS LINK WILL REFRESH THE PAGE </a> How about setting it up like this... <a href=&quot;javascript:location.reload()&quot;> 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?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top