RE: [css-d] Box Problem

2005-09-21 Thread Tim Laureska
Unless I'm missing something it looks like you might have 5 opening
divs:

div id=wrapper
div id=container
div id=content

div class=square
div class=boxcontent


but only four closing /divs





__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Box Problem

2005-09-21 Thread Richard Brown

Hi Tim

I have looked at the code and I thought the wrapper div was meant to 
stay open until the end of the document.


Could folks have a look again please?

The site url is http://www.abistudios.co.uk with the css embeded. The 
problem is a white band towards the botttom of the content div.


Thanks for all the help.

Rich

On 21 Sep 2005, at 22:14, Tim Laureska wrote:


Unless I'm missing something it looks like you might have 5 opening
divs:

div id=wrapper
div id=container
div id=content

div class=square
div class=boxcontent


but only four closing /divs


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Box Problem

2005-09-21 Thread Betsy Garfield

Richard Brown wrote:


Hi Tim

I have looked at the code and I thought the wrapper div was meant to 
stay open until the end of the document.


Could folks have a look again please?

The site url is http://www.abistudios.co.uk with the css embeded. The 
problem is a white band towards the botttom of the content div.



Yes, the wrapper would stay open to the end.

One suggestion is to use Mozilla to view the page. Moz will give you 
errors and warnings. There are no errors, but if you correct the 
warnings, perhaps the problem will go away.


--

Betsy

webdesign: http://flamingofactory.com
photojournal: http://garfieldz.com

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


RE: [css-d] Box Problem

2005-09-21 Thread Peter Williams
 From: Richard Brown
 
 Could folks have a look again please?
 The site url is http://www.abistudios.co.uk with the css embeded. The 
 problem is a white band towards the botttom of the content div.

Richard,

Add   height: 100%; to the rules for boxcontent, as in:
.square .boxcontent {display:block; background:#9ce;
 border-left:1px solid #00c; border-right:1px solid #00c;
 height: 100%; }

When you are tring to troubleshoot it is helpful to turn on
1px coloured borders on the main divs and the area where the
problem is so you can see what element the problem is happening
in and what else is going on with the surrounding elements.

-- 
Peter Williams
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/