Here is the URL I am referring to: Website
I want to position the Weather DIV above other content on the page while still maintaining its position when expanded or collapsed. How can I achieve this without affecting the layout of other elements?
This is the CSS for my weather DIV:
#weather {
margin: 0 auto;
padding: 0;
width: 177px;
font: 75%/120% Arial, Helvetica, sans-serif;
top: 0;
position: relative;
z-index: 999999999;
}