Re: [css-d] general css structure and positioning questions

2007-12-16 Thread Gunlaug Sørtun
Ron Zisman wrote: http://www.ricochet.org/ricotest/ricotest.html problem. file validates as css and xhtml 1, but it's not picking up the background image i've assigned to the #outerwrap. The background-image is picked up, but #outerwrap looks and behaves like it's struck by collapsing

[css-d] Margin-top

2007-12-16 Thread Eric Lucile Eastman
Can anyone tell me why IE6 is positioning my text farther down the page than Firefox? http://www.samallman.com/consultingservices.html The CSS rule is at #text { The file called imagemap.css has the following code. I don't believe this code has anything to do with the problem, but I provide it

Re: [css-d] Margin-top

2007-12-16 Thread Gunlaug Sørtun
Eric Lucile Eastman wrote: Can anyone tell me why IE6 is positioning my text farther down the page than Firefox? http://www.samallman.com/consultingservices.html Yes, it's one of the negative sides of having different 'hasLayout' triggers for IE6 and IE7. There are more than one 'hasLayout'

[css-d] Centering header images in elastic layout and 100% width - scrollbars

2007-12-16 Thread Anne E. Shroeder
I'm re-coding a web site for someone (not redesigning, not my design!) to be in CSS - he wants the page to extend across no matter what size the browser. OK, so I'm having 2 conundrums that I've not been able to find a solution for: In the header, I'd like to absolutely position the

Re: [css-d] IE7 site check/issue?

2007-12-16 Thread [EMAIL PROTECTED]
A *Thank You* Bruno. Worked perfectly! ~Shelly __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies --

Re: [css-d] Centering header images in elastic layout and 100% width - scrollbars

2007-12-16 Thread Anne E. Shroeder
Much more sensible, thank you. But a question: Why do I need to have display:inline as well as float:left? #header #logoLeft { width: 234px; float:left; margin: -15px 0 0 10px; display: inline; } #header #logoRight { width: 123px; float:right; margin: -15px 20px 0 0; display: inline; }

Re: [css-d] general css structure and positioning questions

2007-12-16 Thread Ron Zisman
thanks georg, see below On Dec 16, 2007, at 3:46 AM, Gunlaug Sørtun wrote: Ron Zisman wrote: http://www.ricochet.org/ricotest/ricotest.html problem. file validates as css and xhtml 1, but it's not picking up the background image i've assigned to the #outerwrap. The background-image is

Re: [css-d] Centering header images in elastic layout and 100% width - scrollbars

2007-12-16 Thread Gunlaug Sørtun
Anne E. Shroeder wrote: Much more sensible, thank you. But a question: Why do I need to have display:inline as well as float:left? Only to kill the 'margin-doubling on floats' bug in IE6. That fix makes as little sense as the IE6 bug, but it works without any negative side-effects.

Re: [css-d] general css structure and positioning questions

2007-12-16 Thread Gunlaug Sørtun
Ron Zisman wrote: i moved the image to the body, as the outer wrap only extended as deep as the last div, leaving the bottom of the screen blue. it seems to work in the body... question on size??? this is a whopping 600kp and is about 1800 px wide and 1000 px deep. what are your thoughts