In no particular order. To change the border color of the marquee change this line:
Code:
document.write('<table border="0" cellspacing="0" cellpadding="0"><td>')
to:
Code:
document.write('<table style="border:2px solid #CC0000;" cellspacing="0" cellpadding="0"><td>')
To put spaces in the marqueecontent variable, you can use:for each extra space you want. If you want alot of space, that will get messy, so you can use this alternate method (changes from the original demo highlighted red):
Code:
var marqueecontent='<nobr><pre><font face="Arial" size="3">Thank you for visiting <a href="http://www.dynamicdrive.com">Dynamic Drive.</a> If you find this script useful, please consider linking to us by <a href="../link.htm">click here.</a> Enjoy your stay!</font></pre></nobr>'
With these changes, regular spaces will be displayed as spaces.
Now as to your original question, script conflicts, that is so common we have this for it:
Note: Questions regarding multiple script usage are not usually replied to due to their time consuming nature. See this thread for more information, and this tutorial for one possible solution.
Bookmarks