Use the following javascript in the header of the page and put
<blink>Text goes here</blink>
where ever you want it to go. If you get it working for the background, let me know.
Quote:
<SCRIPT>
<!--
function doBlink() {
var blink = document.all.tags("BLINK")
for (var i=0; i<blink.length; i++)
blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : ""
}
function startBlink() {
if (document.all)
setInterval("doBlink()",500)
}
window.onload = startBlink;
// -->
</SCRIPT>
|