Help with Marquee HTML Code?

Michael W

New member
Hi,

I added a marquee code to the top of my header however the writing is far down the little white box, what is wrong with this code that I can change. To get an idea of my problem have a look at the white box on my website www.totallygamingcentral.com

This is my HTML

<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>News</title>
<link href="images/main.css" type="text/css" rel="stylesheet">

</head>
<body leftmargin="0" topmargin="0" class="default" text="#000000" bgcolor="#ffffff">
<br/>
<div id="TICKER" style="display: block; border-top: 1px solid rgb(204, 204, 204); border-bottom: 1px solid rgb(204, 204, 204); overflow: hidden; background-color: rgb(255, 255, 255); width: 520px;" onMouseOver="TICKER_PAUSED=true" onMouseOut="TICKER_PAUSED=false"><table width="100%" cellpadding="0" cellspacing="0"><tbody><tr><td nowrap="nowrap"><img src="images/ticker_space.gif" width="520px" height="0">
<span style="font-family: Arial; font-size: 12px; color: rgb(68, 68, 68);" id="TICKER_BODY" width="100%">

<!-- Message No. 1 Starts -->
<span style="background-color: rgb(127, 181, 26);"> <font color="#ffffff">
<b>Scrolling News Ticker</b></font> </span> <b>You can add this ticker in your own web pages.</b>

<!-- Message No. 1 Ends -->

<!-- Message No. 2 Starts -->

<span style="background-color: rgb(255, 170, 0);"> <font color="#ffffff">
<b>Free</b></font> </span> <b>You can add it for free, in exchange of a link to this page.</b>

<!-- Message No. 2 Ends -->

<!-- Message No. 3 Starts -->

<span style="background-color: rgb(0, 136, 255);">
<b><font color="#ffffff"> Desktop News Ticker</font></b> </span> <b>And why not to offer to your visitors your own .This is the perfect tool to attract and keep visitors... <a href="#"><u>More info</u></a></b>

<!-- Message No. 3 Ends -->


</span>
<img src="images/ticker_space.gif" width="520px" height="0">

</td>

</tr>

</tbody>

</table>
</div>
<script type="text/javascript" src="images/webticker_lib.htm" language="javascript"></script>


<script>
// Get the mouse position
var IE = document.all ? true : false;

if (!IE) document.captureEvents(Event.MOUSEMOVE)
document.onmousemove = getMouseXY;
var mouseX = 0, mouseY = 0

function getMouseXY(e) {
mouseX = IE ? event.clientX + document.body.scrollLeft : e.pageX;
mouseY = IE ? event.clientY + document.body.scrollTop : e.pageY;
mouseX = mouseX < 0 ? 0 : mouseX;
mouseY = mouseY < 0 ? 0 : mouseY;
return true
}
</script><br>

</center>
</body></html>
Yes the images are there. If you click on the white box and drag down the writing is there however I need to somehow shift it up.
Yes the images are there. If you click on the white box and drag down the writing is there however I need to somehow shift it up.
 
Back
Top