Re: [css-d] Sidebar issues

2007-12-13 Thread Todd Richards
@lists.css-discuss.org Subject: Re: [css-d] Sidebar issues Todd, The problem is using position: absolute for the column on the right. See http://www.w3.org/TR/CSS21/visuren.html#absolute-positioning for more info. Both of the elements inside the wrapper should be floated. Take a look at this demo

Re: [css-d] Sidebar issues

2007-12-13 Thread Joshua Kappers
PROTECTED] Cc: css-d@lists.css-discuss.org Subject: Re: [css-d] Sidebar issues Todd, The problem is using position: absolute for the column on the right. See http://www.w3.org/TR/CSS21/visuren.html#absolute-positioning for more info. Both of the elements inside the wrapper should be floated

Re: [css-d] Sidebar issues

2007-12-13 Thread Todd Richards
To: [EMAIL PROTECTED] Cc: Jim Davis; css-d@lists.css-discuss.org Subject: Re: [css-d] Sidebar issues You don't have to float both of the elements if you don't want too. There is another way. An alternative approach would be to switch the source order of #main and #side (put #side first in source

[css-d] Sidebar issues

2007-12-12 Thread Todd Richards
Hello - Regardless of the struggles I have had with CSS, I still find myself trying more and more. In all actuality, I probably won't build a site with tables again! However, with that said I'm having another issue that I can't seem to figure out and I'm hoping the experts here might give it a

Re: [css-d] Sidebar issues

2007-12-12 Thread Jim Davis
Todd, The problem is using position: absolute for the column on the right. See http://www.w3.org/TR/CSS21/visuren.html#absolute-positioning for more info. Both of the elements inside the wrapper should be floated. Take a look at this demo and view the source to see the css.