[WSG] [IE7 Glitch] footer is expanding, and acting wonky with scrolling.

2008-10-09 Thread Andrew Brown

Hi WSG!

I've got a footer with rounded corners.
I have a div.footer_wrap and div.footer for each corner.
The technique worked already with all my other rounder corners.
The only issue appears in the footer, maybe because its the only thing  
prone to scroll?


Does anyone know what would fix this? I exhausted my self with various  
solutions.

The live demo is here: http://monsterboxpro.com/dump/webtemp/index.html



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] [IE7 Glitch] footer is expanding, and acting wonky with scrolling.

2008-10-09 Thread Сергей Кириченко
just remove margin of p or p itself
2008/10/9 Andrew Brown [EMAIL PROTECTED]

 Hi WSG!

 I've got a footer with rounded corners.
 I have a div.footer_wrap and div.footer for each corner.
 The technique worked already with all my other rounder corners.
 The only issue appears in the footer, maybe because its the only thing
 prone to scroll?

 Does anyone know what would fix this? I exhausted my self with various
 solutions.
 The live demo is here: http://monsterboxpro.com/dump/webtemp/index.html



 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***

Re: [WSG] [IE7 Glitch] footer is expanding, and acting wonky with scrolling.

2008-10-09 Thread Andrew Brown

Margin is already set to zero.
Removing the padding will fix it, but then there's no padding which  
defeats the purpose.
Remove the p doesn't seem proper practice, and then applying padding  
to either div footer elements still causes the problem.
Its just strange its only a problem with the footer and no other  
element with rounded corners on my page.


I've come across this IE glitch I just can't find the solution to  
solve it again.



On 9-Oct-08, at 2:53 PM, Сергей Кириченко wrote:


just remove margin of p or p itself

2008/10/9 Andrew Brown [EMAIL PROTECTED]
Hi WSG!

I've got a footer with rounded corners.
I have a div.footer_wrap and div.footer for each corner.
The technique worked already with all my other rounder corners.
The only issue appears in the footer, maybe because its the only  
thing prone to scroll?


Does anyone know what would fix this? I exhausted my self with  
various solutions.
The live demo is here: http://monsterboxpro.com/dump/webtemp/ 
index.html




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***


Re: [WSG] [IE7 Glitch] footer is expanding, and acting wonky with scrolling.

2008-10-09 Thread Todd Budnikas
recently came across something similar, and was able to solve with a  
combination of display:inline-block; on the p and overflow:hidden;  
on the containing div. Might want to give that a shot.


On Oct 9, 2008, at 3:24 PM, Andrew Brown wrote:

Margin is already set to zero.
Removing the padding will fix it, but then there's no padding which  
defeats the purpose.
Remove the p doesn't seem proper practice, and then applying padding  
to either div footer elements still causes the problem.
Its just strange its only a problem with the footer and no other  
element with rounded corners on my page.


I've come across this IE glitch I just can't find the solution to  
solve it again.




2008/10/9 Andrew Brown [EMAIL PROTECTED]
I've got a footer with rounded corners.
I have a div.footer_wrap and div.footer for each corner.
The technique worked already with all my other rounder corners.
The only issue appears in the footer, maybe because its the only  
thing prone to scroll?


Does anyone know what would fix this? I exhausted my self with  
various solutions.

The live demo is here: http://monsterboxpro.com/dump/webtemp/index.html






***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***

Re: [WSG] [IE7 Glitch] footer is expanding, and acting wonky with scrolling.

2008-10-09 Thread Gunlaug Sørtun

Andrew Brown wrote:


Does anyone know what would fix this? I exhausted my self with
various solutions. The live demo is here:
http://monsterboxpro.com/dump/webtemp/index.html


Stiffen up IE's backbone with a 'hasLayout'[1] triggering declaration.

Add...

div.footer_wrap {height: 1%;}

...and it'll do fine.

BTW: 'display: relative;' that you have on the same element, must be a
mistake. No such 'display' value - you probably meant to write
'position: relative' but I can't see the need for that one either.

regards
Georg

[1]http://www.satzansatz.de/cssd/onhavinglayout.html
--
http://www.gunlaug.no


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***