I feel like I'm losing my mind...
Trying to achieve the following: a fixed div that always stays visible on the page. Sounds simple enough, but within this div, I need to add content that will scroll along with the rest of the site. Keep in mind, this content does not have its own scrollbar and should move together with the main window's scrollbar.
I've attempted creating another div inside the fixed div with all the necessary position attributes, but without success so far:
.furosimg {
position: fixed !important;
width: 181px;
height: 200px;
z-index:9;
margin: 20px 0px 0px 470px;
overflow: auto;
}
.furosimg .furosone {
position: relative !important;
width: 181px;
height:900px;
background:url(../images/topbg.png) center repeat-y;
}
Any advice or suggestions?
Thank you!