After making a few tweaks to the CSS, my page is pretty much exactly how I want it - except for the whole resizing thing.
I have my sidebar set to float:left and main part of the page floating to the right, but when I when the window's at less than full screen, the sidebar gets completely hidden - you can't scroll over to it, it just gets stuck off page until the window's big enough.
I was wondering if there was any way I'd be able to set it up so it sticks in place and doesn't go off-screen with smaller windows?
(My URL is macinphormer.com)
Here's the code:
#sidebar {
position:absolute;
width:230px;
padding:10px;
background:#FFFFFF;
clip:auto;
float:left;
margin-left:-316px;
margin-top:-241px;
}
#main {
width:600px;
float:right;
margin-right:100px;
padding:0;
}
