I found thhis script. Unfortunately, there is a problem with this line
Code:
*{margin:0;padding:0}
If I remote it, white space appears before marquee, if I keep it, all design of my website becomes unusuable. Any ideas how to fix it?
Thanks.

Code:
<style type="text/css">
*{margin:0;padding:0}
/*html,body{height:100%}*/
h1,p{margin:0 0 1em 0}

#outer{
width:100%;
min-height:100%;
margin:auto;
border:1px solid #000;
border-top:none;
border-bottom:none;
position:relative;
text-align:left;

}
* html #outer{height:100%}

p.last{
padding-bottom:60px;
}




#base{
position:fixed;
bottom:0;
height:35px;
width:100%;
background:red;

}
* html #base{/* for ie6 and under*/
position:absolute;
bottom:0;
left:0;

}


<div id="base"><marquee behavior="scroll" direction="left" bgcolor="#dedede" width="100%" height="35" ScrollDelay="50" onMouseOver="this.stop()" onMouseOut="this.start()" loop="infinite"><table bgcolor="#dedede" cellpadding="0" cellspacing="0" border="0"><tr><td>your scrolling text here...... <a href="http://www.test.com">Link text</a> scrolling text</td></tr></table></marquee>
</div>