Dave Pierce wrote:
> http://lorettosedgwick.org/pages/aboutus.html

> Anyone have any ideas as to what I'm missing?

The IE-bug Ingo mentioned.

The easiest way to avoid that bug, is to restyle like this...

.friends {
background: #ffeab8;
padding-top: 3px;
padding-bottom: 6px;
}
.friends p {
background: #ffeab8;
margin: 1em 4px 1em 1em;
}

...and it isn't a good idea to use borders as "pseudo-margins" anyway,
since borders may end up *black* if border-color is forced by a
browser-option. IE/win is good at that :-)


Also, the 'margin-doubling on floats' bug in IE is messing up the
positions on a couple of other elements.

Adding...

#main{display: inline;}
#content2 {display: inline;}

...will make things render more identical across browser-land.


And while you're at it: avoid using pixels on 'line-height'.

.alttext {line-height: 14px;}

...should be changed to...

.alttext {line-height: 1.1;}

...to avoid overlapping text-lines in IE/win and Opera.

> I wish I was a faster learner, but three weeks of study has just left
>  me knowing how little I know!

Funny, I'm often saying the same... ;-)

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to