View Full Version : marquee problems


littledeadgirl
09-22-2004, 09:53 PM
ok well this is the layout for my site i made
http://img.photobucket.com/albums/v115/liquidateddoll/rubeygloombk.gif

and in the cloud with the speed of 1 n white righting im trying to make it go up but only in the top cloud. It wont seem to do it. it like starts at the bottom n goes up really high n then puts a scroll bar which i tried to make transparent. This is teh code i have at the moment for it

<div style="position:absolute; left:220px; top:100px; width:50px; height:50px; overflow:auto; scrolling=auto style="FILTER: chroma(color=#ff0000)" allowtransparency="true">
<marquee behavior=scroll direction="up" scrollamount="1">Your message here</marquee>

<div>

i havn't inserted any txt yet but i will do l8er but it wont seem to work. grrr. can anyone help me n tell em what im doing wrong?
thanx
charlie

Monkey Bizzle
09-22-2004, 10:28 PM
perhaps if you fix a few errors that you have then it might work? try this instead

<div style="position: absolute; left: 220px; top: 100px; width: 50px; height: 50px; overflow: hidden;">

<marquee behavior="scroll" direction="up" scrollamount="1">
Your message here
</marquee>

<div>

if you change the overflow to hidden, then you won't see the scroll bars...

littledeadgirl
09-22-2004, 10:39 PM
thanx!