Re: [css-d] Problem with menu in IE7 works in FF and IE6

2007-02-02 Thread Parag Jagdale
Has anybody gotten a chance to look at this problem?

Thanks,
Parag

On 2/1/07, Parag Jagdale [EMAIL PROTECTED] wrote:
 Hello, I am having problems with a menu in IE7. I cant figure out the
 problem. Any help is appreciated.
 The web site is at: http://www.rgampadds.com
 You can find css files here:
 http://www.rgampadds.com/templates/wcf_template/styles/

 structureStyle.css and menuStyle.css both involve the menu code.

 Thank You,
 Parag Jagdale
 www.un-identified.com

__
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/


Re: [css-d] Problem with menu in IE7 works in FF and IE6

2007-02-02 Thread andree hollander

On 2007-02-02, at 09:49, Parag Jagdale wrote:

[top posting corrected]

 On 2/1/07, Parag Jagdale [EMAIL PROTECTED] wrote:
 Hello, I am having problems with a menu in IE7. I cant figure out the
 problem. Any help is appreciated.
 The web site is at: http://www.rgampadds.com
 You can find css files here:
 http://www.rgampadds.com/templates/wcf_template/styles/

 structureStyle.css and menuStyle.css both involve the menu code.

 Has anybody gotten a chance to look at this problem?


First validate your page before asking for help:

Failed validation, 16 errors

-- 
andree hollander



__
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/


Re: [css-d] Problem with menu in IE7 works in FF and IE6

2007-02-02 Thread Ingo Chao
Parag Jagdale wrote:
 Has anybody gotten a chance to look at this problem?

;)

 On 2/1/07, Parag Jagdale [EMAIL PROTECTED] wrote:
 Hello, I am having problems with a menu in IE7. I cant figure out the
 problem. Any help is appreciated.
 The web site is at: http://www.rgampadds.com
 You can find css files here:
 http://www.rgampadds.com/templates/wcf_template/styles/

 structureStyle.css and menuStyle.css both involve the menu code.


It is the situation we are demonstrating in Test B at
http://www.satzansatz.de/cssd/acidicfloat.html

One of the wrappers of your menu, #menuVertical, has a fixed height of 
24px (for whatever reason).

It contains a float #menuVerticalwrap, which is taller.

IE7 respects the given height and does not expand the wrapper like IE6 
and below did.

Actually, the floating child does stick out of the container like in 
modern browsers, but: the float is not visible to the following 
elements, even if they should clear the space under the float.

Consecutive elements do not know anything about the wrapped float, they 
ignore it, which is plain wrong.

I'd remove the height of 24px from #menuVertical, and use another 
haslayout trigger like zoom:1 instead (you need to add haslayout because 
its a relatively positioned element which would fade away without).

regards,

Ingo

-- 
http://www.satzansatz.de/css.html
__
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/


Re: [css-d] Problem with menu in IE7 works in FF and IE6

2007-02-02 Thread Parag Jagdale
Ingo,

  Just removing the height on  #menuVertical worked by itself!

Thanks a lot!
Parag Jagdale
__
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/