On this page
you can see that the page is always 285 pixels wider than it should be. I know where that problem is coming from, but can't find a solution. The code
and the css
What I am after is a horizontal bar (greybar) that has the weather from Yahoo!s RSS feed (works) and a scrolling marquee (works cross browser), but I can't get them to play nicely on the same line without getting that big wide empty space on the right outside of the container.
Help?
Willie
you can see that the page is always 285 pixels wider than it should be. I know where that problem is coming from, but can't find a solution. The code
Code:
<div id="greybar">
<div id="weather"><%= getWeather(1)%><div id="scrollbar"><script language="JavaScript1.2" type="text/javascript">
.
.
.
Code:
div#greybar
{
position:relative;
top:-6px;
background-color: #666664;
width: auto;
height: 30px;
margin: 0px;
padding:1px;
}
div#greybar #weather
{
position:relative;
}
div#greybar #weather #scrollbar
{
position:relative;
top:-33px;
left:285px;
clear:both;
}
What I am after is a horizontal bar (greybar) that has the weather from Yahoo!s RSS feed (works) and a scrolling marquee (works cross browser), but I can't get them to play nicely on the same line without getting that big wide empty space on the right outside of the container.
Help?
Willie