CSS Dropdown Menu Not Applying Z-Index
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
To start off, I know there are questions similar to mine and this is a repeated question, but none of the solutions have resolved my problem. I'm not sure why this is occurring, but my dropdown menu is not applying the -1 z-index no matter what I do. Essentially, if I hover over where the element ends up being, it just appears, so it has a z-index of 10, just like the header. I can't include anymore code because it won't let me post anything if I do that, but the header has a position of absolute and a z-index of 10.
Edit: Explaining again that I know there are similar questions and/or duplicate questions, but none have resolved my issue.
HTML
<ul>
<li class="menu-item"><a href="#">HOME</a></li>
<li class="menu-item"><a href="#">JOURNAL</a></li>
<li class="menu-item dropdown-item">
<a href="#">MEMBERS
<span class="icon-container">
<i class="fas fa-chevron-down"></i>
</span>
</a>
<ul class='dropdown-menu'>
<li class="dropdown-link"><a href="#">Member 1</a></li>
<li class="dropdown-link"><a href="#">Member 2</a></li>
<li class="dropdown-link"><a href="#">Member 3</a></li>
</ul>
</li>
<li class="menu-item"><a href="#">VIDEOS</a></li>
</ul>
ul
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;
&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;
&:hover
.icon-container
transform: rotate(180deg);
.dropdown-menu
opacity: 1;
transform: translateY(0);
z-index: 0;
ul.dropdown-menu
position: absolute;
z-index: -1 !important;
opacity: 0;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;
&:hover
a
color: $pink;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;
&:last-child
a
&::after
content: none;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);
css sass z-index dropdown
add a comment |
To start off, I know there are questions similar to mine and this is a repeated question, but none of the solutions have resolved my problem. I'm not sure why this is occurring, but my dropdown menu is not applying the -1 z-index no matter what I do. Essentially, if I hover over where the element ends up being, it just appears, so it has a z-index of 10, just like the header. I can't include anymore code because it won't let me post anything if I do that, but the header has a position of absolute and a z-index of 10.
Edit: Explaining again that I know there are similar questions and/or duplicate questions, but none have resolved my issue.
HTML
<ul>
<li class="menu-item"><a href="#">HOME</a></li>
<li class="menu-item"><a href="#">JOURNAL</a></li>
<li class="menu-item dropdown-item">
<a href="#">MEMBERS
<span class="icon-container">
<i class="fas fa-chevron-down"></i>
</span>
</a>
<ul class='dropdown-menu'>
<li class="dropdown-link"><a href="#">Member 1</a></li>
<li class="dropdown-link"><a href="#">Member 2</a></li>
<li class="dropdown-link"><a href="#">Member 3</a></li>
</ul>
</li>
<li class="menu-item"><a href="#">VIDEOS</a></li>
</ul>
ul
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;
&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;
&:hover
.icon-container
transform: rotate(180deg);
.dropdown-menu
opacity: 1;
transform: translateY(0);
z-index: 0;
ul.dropdown-menu
position: absolute;
z-index: -1 !important;
opacity: 0;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;
&:hover
a
color: $pink;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;
&:last-child
a
&::after
content: none;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);
css sass z-index dropdown
Possible duplicate of Css dropdown menu z-index issue
– First Name
Nov 14 '18 at 0:37
Again, as stated in the question, I know this is a duplicate, but the answer didn't resolve my issue.
– valtro05
Nov 14 '18 at 0:40
add a comment |
To start off, I know there are questions similar to mine and this is a repeated question, but none of the solutions have resolved my problem. I'm not sure why this is occurring, but my dropdown menu is not applying the -1 z-index no matter what I do. Essentially, if I hover over where the element ends up being, it just appears, so it has a z-index of 10, just like the header. I can't include anymore code because it won't let me post anything if I do that, but the header has a position of absolute and a z-index of 10.
Edit: Explaining again that I know there are similar questions and/or duplicate questions, but none have resolved my issue.
HTML
<ul>
<li class="menu-item"><a href="#">HOME</a></li>
<li class="menu-item"><a href="#">JOURNAL</a></li>
<li class="menu-item dropdown-item">
<a href="#">MEMBERS
<span class="icon-container">
<i class="fas fa-chevron-down"></i>
</span>
</a>
<ul class='dropdown-menu'>
<li class="dropdown-link"><a href="#">Member 1</a></li>
<li class="dropdown-link"><a href="#">Member 2</a></li>
<li class="dropdown-link"><a href="#">Member 3</a></li>
</ul>
</li>
<li class="menu-item"><a href="#">VIDEOS</a></li>
</ul>
ul
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;
&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;
&:hover
.icon-container
transform: rotate(180deg);
.dropdown-menu
opacity: 1;
transform: translateY(0);
z-index: 0;
ul.dropdown-menu
position: absolute;
z-index: -1 !important;
opacity: 0;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;
&:hover
a
color: $pink;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;
&:last-child
a
&::after
content: none;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);
css sass z-index dropdown
To start off, I know there are questions similar to mine and this is a repeated question, but none of the solutions have resolved my problem. I'm not sure why this is occurring, but my dropdown menu is not applying the -1 z-index no matter what I do. Essentially, if I hover over where the element ends up being, it just appears, so it has a z-index of 10, just like the header. I can't include anymore code because it won't let me post anything if I do that, but the header has a position of absolute and a z-index of 10.
Edit: Explaining again that I know there are similar questions and/or duplicate questions, but none have resolved my issue.
HTML
<ul>
<li class="menu-item"><a href="#">HOME</a></li>
<li class="menu-item"><a href="#">JOURNAL</a></li>
<li class="menu-item dropdown-item">
<a href="#">MEMBERS
<span class="icon-container">
<i class="fas fa-chevron-down"></i>
</span>
</a>
<ul class='dropdown-menu'>
<li class="dropdown-link"><a href="#">Member 1</a></li>
<li class="dropdown-link"><a href="#">Member 2</a></li>
<li class="dropdown-link"><a href="#">Member 3</a></li>
</ul>
</li>
<li class="menu-item"><a href="#">VIDEOS</a></li>
</ul>
ul
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;
&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;
&:hover
.icon-container
transform: rotate(180deg);
.dropdown-menu
opacity: 1;
transform: translateY(0);
z-index: 0;
ul.dropdown-menu
position: absolute;
z-index: -1 !important;
opacity: 0;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;
&:hover
a
color: $pink;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;
&:last-child
a
&::after
content: none;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);
css sass z-index dropdown
css sass z-index dropdown
edited Nov 14 '18 at 0:43
valtro05
asked Nov 14 '18 at 0:16
valtro05valtro05
466
466
Possible duplicate of Css dropdown menu z-index issue
– First Name
Nov 14 '18 at 0:37
Again, as stated in the question, I know this is a duplicate, but the answer didn't resolve my issue.
– valtro05
Nov 14 '18 at 0:40
add a comment |
Possible duplicate of Css dropdown menu z-index issue
– First Name
Nov 14 '18 at 0:37
Again, as stated in the question, I know this is a duplicate, but the answer didn't resolve my issue.
– valtro05
Nov 14 '18 at 0:40
Possible duplicate of Css dropdown menu z-index issue
– First Name
Nov 14 '18 at 0:37
Possible duplicate of Css dropdown menu z-index issue
– First Name
Nov 14 '18 at 0:37
Again, as stated in the question, I know this is a duplicate, but the answer didn't resolve my issue.
– valtro05
Nov 14 '18 at 0:40
Again, as stated in the question, I know this is a duplicate, but the answer didn't resolve my issue.
– valtro05
Nov 14 '18 at 0:40
add a comment |
1 Answer
1
active
oldest
votes
This is because it takes on the parent z-index. There's really no way around this. The reason why it is displaying when you hover where it's "supposed" to be, is because it's there. Giving something an opacity of 0, leaves in in place...but makes it invisible.
What you want to do is toggle between visibility: hidden and visibility: visible. This way you aren't tying to just hide something using z-index and opacity.
ul
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;
&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;
&:hover
.icon-container
transform: rotate(180deg);
.dropdown-menu
opacity: 1;
visibility: visible;
transform: translateY(0);
z-index: 0;
ul.dropdown-menu
position: absolute;
opacity: 0;
visibility: hidden;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;
&:hover
a
color: $pink;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;
&:last-child
a
&::after
content: none;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);
Ah, got it! Thank you!
– valtro05
Nov 14 '18 at 0:50
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53291363%2fcss-dropdown-menu-not-applying-z-index%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is because it takes on the parent z-index. There's really no way around this. The reason why it is displaying when you hover where it's "supposed" to be, is because it's there. Giving something an opacity of 0, leaves in in place...but makes it invisible.
What you want to do is toggle between visibility: hidden and visibility: visible. This way you aren't tying to just hide something using z-index and opacity.
ul
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;
&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;
&:hover
.icon-container
transform: rotate(180deg);
.dropdown-menu
opacity: 1;
visibility: visible;
transform: translateY(0);
z-index: 0;
ul.dropdown-menu
position: absolute;
opacity: 0;
visibility: hidden;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;
&:hover
a
color: $pink;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;
&:last-child
a
&::after
content: none;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);
Ah, got it! Thank you!
– valtro05
Nov 14 '18 at 0:50
add a comment |
This is because it takes on the parent z-index. There's really no way around this. The reason why it is displaying when you hover where it's "supposed" to be, is because it's there. Giving something an opacity of 0, leaves in in place...but makes it invisible.
What you want to do is toggle between visibility: hidden and visibility: visible. This way you aren't tying to just hide something using z-index and opacity.
ul
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;
&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;
&:hover
.icon-container
transform: rotate(180deg);
.dropdown-menu
opacity: 1;
visibility: visible;
transform: translateY(0);
z-index: 0;
ul.dropdown-menu
position: absolute;
opacity: 0;
visibility: hidden;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;
&:hover
a
color: $pink;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;
&:last-child
a
&::after
content: none;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);
Ah, got it! Thank you!
– valtro05
Nov 14 '18 at 0:50
add a comment |
This is because it takes on the parent z-index. There's really no way around this. The reason why it is displaying when you hover where it's "supposed" to be, is because it's there. Giving something an opacity of 0, leaves in in place...but makes it invisible.
What you want to do is toggle between visibility: hidden and visibility: visible. This way you aren't tying to just hide something using z-index and opacity.
ul
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;
&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;
&:hover
.icon-container
transform: rotate(180deg);
.dropdown-menu
opacity: 1;
visibility: visible;
transform: translateY(0);
z-index: 0;
ul.dropdown-menu
position: absolute;
opacity: 0;
visibility: hidden;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;
&:hover
a
color: $pink;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;
&:last-child
a
&::after
content: none;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);
This is because it takes on the parent z-index. There's really no way around this. The reason why it is displaying when you hover where it's "supposed" to be, is because it's there. Giving something an opacity of 0, leaves in in place...but makes it invisible.
What you want to do is toggle between visibility: hidden and visibility: visible. This way you aren't tying to just hide something using z-index and opacity.
ul
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;
&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;
&:hover
.icon-container
transform: rotate(180deg);
.dropdown-menu
opacity: 1;
visibility: visible;
transform: translateY(0);
z-index: 0;
ul.dropdown-menu
position: absolute;
opacity: 0;
visibility: hidden;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;
&:hover
a
color: $pink;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;
&:last-child
a
&::after
content: none;
a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);
answered Nov 14 '18 at 0:47
EricEric
1866
1866
Ah, got it! Thank you!
– valtro05
Nov 14 '18 at 0:50
add a comment |
Ah, got it! Thank you!
– valtro05
Nov 14 '18 at 0:50
Ah, got it! Thank you!
– valtro05
Nov 14 '18 at 0:50
Ah, got it! Thank you!
– valtro05
Nov 14 '18 at 0:50
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53291363%2fcss-dropdown-menu-not-applying-z-index%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Possible duplicate of Css dropdown menu z-index issue
– First Name
Nov 14 '18 at 0:37
Again, as stated in the question, I know this is a duplicate, but the answer didn't resolve my issue.
– valtro05
Nov 14 '18 at 0:40