Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
#1 2010-06-01 10:35:20
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
hidden dropdown menu
in this page , if you move your cursor on main-menu (horizontal) you will see the dropdown menu is covered by the .panel-display div. i know, i can fix it by adding:
#eoy-main-menu {
position:relative;
z-index:2;
}
#eoy-content {
position:relative;
z-index:1;
}
but i would like to know the reason of this overlapping. any ideas?
EDIT: and in ie6 the .panel-display div overlapping the main menu totally
Last edited by Gallex (2010-06-01 10:50:42)
Offline
Re: hidden dropdown menu
It’s a well-known IE6 bug and a pain to get rid of. I last came across when using the superfish menu drop-downs. Some further links with various different solutions.
TXP Builders – finely-crafted code, design and txp
Offline
#3 2010-06-01 12:51:42
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
Re: hidden dropdown menu
jakob wrote:
It’s a well-known IE6 bug and a pain to get rid of. I last came across when using the superfish menu drop-downs. Some further links with various different solutions.
actually my dropdown is covered in all browsers and i’m not using z-index in my menu right now. it’s all about .panel-display div, why it doing so….?
Offline
Re: hidden dropdown menu
Hi Gallex you menu does need a z-index as it hides behind the div below it on ff/mac
Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.
Offline
#5 2010-06-01 13:38:46
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
Re: hidden dropdown menu
colak wrote:
Hi Gallex you menu does need a z-index as it hides behind the div below it on ff/mac
yeah, i know. just curious, why it hides…
Offline
Re: hidden dropdown menu
because it appears before the next div in the xml structure making its default z-index deeper. A value for a z-index should fix it
Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.
Offline
#7 2010-06-01 17:04:54
- GugUser
- Member
- From: Quito (Ecuador)
- Registered: 2007-12-16
- Posts: 1,473
Re: hidden dropdown menu
Put the #block-menu-primary-links
behind the #eoy-content
, change in this sense the CSS and you solves many problems.
Offline
Pages: 1