That's a little more complicated. You need to find this bit in the code:
Code:
document.write('<span id="whatsnew" style="width:100%;height=10;filter:revealTrans(duration=2,transition=19)">'+tickers[0]+'</span>')
See where I've highlighted it. With a width of 100%, there is no more room for anything else on that line. Change it like:
Code:
document.write('<span id="whatsnew" style="width:400px;height=10;filter:revealTrans(duration=2,transition=19)">'+tickers[0]+'</span>')
Just make sure it is still wide enough to fit whatever messages (tickers) you are using. Now, you can put a span tag just before the first opening script tag in the body section and put your intro text in there:
Code:
<span style="font-family:arial;font-weight:bold;color:green;background-color:white;">Hi There, Here's the News:</span>
<script language="javascript1.2">
<!--
/*
News Updater Script-
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/ . . .
You can use whatever style you want for the span, I used one that works well with the demo's style for the tickers and a white background.
Bookmarks