[css-d] Section Width Problem

2013-11-26 Thread Yazmin Media
Hello all, I'm working on the following site: http://www.outsideoftheboxholidays.com/ All my sections are set to display block inside a parent section (#contentcontainer) that sets the width of the site. All the child sections are displaying full width, with the exception of the #services secti

Re: [css-d] Section Width Problem

2013-11-26 Thread Chris Rockwell
Looks like it just the width of the content giving you issues. Because it's floated, it only takes as much width as is needed for the contents; set width:100% on your element and you should be good. On Tue, Nov 26, 2013 at 10:43 AM, Yazmin Media wrote: > Hello all, > > I'm working on the foll

Re: [css-d] Section Width Problem

2013-11-26 Thread Chris Rockwell
Here's a visual showing the issue: http://codepen.io/chrisrockwell/pen/Cjybn On Tue, Nov 26, 2013 at 10:49 AM, Chris Rockwell wrote: > Looks like it just the width of the content giving you issues. Because > it's floated, it only takes as much width as is needed for the contents; > set width:10

Re: [css-d] Section Width Problem

2013-11-26 Thread Christian Kirchhoff privat
Hello Yazmin, my guess is that the other sections only appear to have full width because they contain enough content. See http://css.maxdesign.com.au/floatutorial/introduction.htm, part "Do floated items need a width?" You should explicitely define the width for the sections in the #conten

Re: [css-d] Section Width Problem

2013-11-26 Thread Yazmin Media
Thanks Chris. That leftover float was the culprit. On Tue, Nov 26, 2013 at 10:52 AM, Chris Rockwell wrote: > Here's a visual showing the issue: > http://codepen.io/chrisrockwell/pen/Cjybn > > > On Tue, Nov 26, 2013 at 10:49 AM, Chris Rockwell > wrote: > >> Looks like it just the width of the co

Re: [css-d] Section Width Problem

2013-11-26 Thread Karl DeSaulniers
On Nov 26, 2013, at 5:58 PM, Yazmin Media wrote: > Thanks Chris. That leftover float was the culprit. > > > On Tue, Nov 26, 2013 at 10:52 AM, Chris Rockwell > wrote: > >> Here's a visual showing the issue: >> http://codepen.io/chrisrockwell/pen/Cjybn >> >> >> On Tue, Nov 26, 2013 at 10:49

Re: [css-d] Section Width Problem

2013-11-27 Thread absolute courier
REMOVE ME!!!   Chrishna Arthur On Tuesday, November 26, 2013 6:53 PM, Karl DeSaulniers wrote: On Nov 26, 2013, at 5:58 PM, Yazmin Media wrote: > Thanks Chris. That leftover float was the culprit. > > > On Tue, Nov 26, 2013 at 10:52 AM, Chris Rockwell > wrote: > >> Here's a visual sho

Re: [css-d] Section Width Problem

2013-11-30 Thread Yazmin Media
Interesting. I'm seeing it fixed without your edit in the same setup. Best, Yazmin On Tue, Nov 26, 2013 at 7:52 PM, Karl DeSaulniers wrote: > > I still see the issue on Safari 6.1 Mac OS 10.8.5 even with the sections > width set to 100%. > However when I put > It went away. ___