rlemon
06-06-2005, 08:27 PM
http://www.rlemon.com/new_sites/rlemon/
The div tags for the background colour are not spanning the entire width when the user has to scroll horizontally.
to see:
1) load the site
2) resize the browser window such that the user must scroll horizontally.
3) Scroll to the right
*Notice the whitespace
4) resize the browser window so the user does not have to scroll horizontally.
*No whitespace.
i'm new to css layouts. I generally work with tables but have been told to use css and divs.
I know there is still some sloppy css there so please bare with me.
Edit:
ohh and '_padding-left' is not a valid property (according to w3c). I got it from a tutorial on how to make 'hack' IE only css. (it worked, so i kept it)
I changed that to conditional code.
<!--[if IE]>
<style>
#top_menu {
padding-left: 75px;
}
</style>
<![endif]-->
The div tags for the background colour are not spanning the entire width when the user has to scroll horizontally.
to see:
1) load the site
2) resize the browser window such that the user must scroll horizontally.
3) Scroll to the right
*Notice the whitespace
4) resize the browser window so the user does not have to scroll horizontally.
*No whitespace.
i'm new to css layouts. I generally work with tables but have been told to use css and divs.
I know there is still some sloppy css there so please bare with me.
Edit:
ohh and '_padding-left' is not a valid property (according to w3c). I got it from a tutorial on how to make 'hack' IE only css. (it worked, so i kept it)
I changed that to conditional code.
<!--[if IE]>
<style>
#top_menu {
padding-left: 75px;
}
</style>
<![endif]-->