Do you mean height or top? I ask because in your style attribute you had top: 10%, but in your most recent post you ask about height.
I think you mean top, as on your page you now have:
Code:
<div class ="marquee" id="table" style="top:10%;">
You should get rid of that highlighted bit, it can do no good.
First thing I would try is applying it here:
Code:
<script type="text/javascript">
marqueeInit({
uniqueid: 'table',
style: {
'padding': '2px',
'width': '1500px',
'height': '600px',
'overflow':'hidden',
'top':'10%',
'position':'absolute'
},
inc: 12, //speed - pixel increment for each iteration of this marquee's movement
mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
moveatleast: 2,
neutral: 150,
direction: 'left',
noAddedSpace: true,
savedirection: true,
stopped: false,
});
</script>
But that might not work. The top property relies upon positioning absolute, fixed, or relative. The script might enforce static positioning or otherwise arrange things so that your position and top properties are not observed.
So if the above doesn't work, just place another division around the division with the id of table (around the entire crawler markup). You may position this added division absolute and make it top 10%. To get it to really work out, you may have to give it height and width as well, these should match those configure for the crawler.
Bookmarks