Chris Pallé wrote:
> Is anyone familiar with this issue? I'm prototyping a site right now 
> that does a weird thing when resizing the window in FF. The feature 
> projects labels shift around and stick until after a reload.
> 
> Safari handles it well. Haven't look in IE.
> 
> http://bfi.blueflameinteractive.com/

I've battled with similar issues in FF before. I turned those margins
and paddings around a bit, so _you_ will end up with something like the
following...

#secondaryContent #featuredProjs ul.project {
position: relative;
padding: 7px 14px;
margin: 14px 0;
}

#secondaryContent #featuredProjs ul.project li {
list-style: none;
padding: 0;
margin: 0 0 0 28%;
}

...which will look the same but make FF behave better.

----

I'd also change margins on the containers, make sure the right float
don't get "hooked up" on wide windows, and also add some
'margin-doubling-on-float' and 'auto-expansion' fixes for IE6...

#primaryContent {
margin: 7px 0 7px 1%;
display: inline;
}

#secondaryContent {
margin: 7px 1% 7px 0;
display: inline;
clear: both;
}

* html #secondaryContent {
overflow-x: hidden;
}

----

Note: globalNav doesn't look good in IE6 - yet.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- 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