hamburger button color not changing
how do i change the color of hamburger menu on css. Here is my attempt
.hamburger-inner{
background-color: white;
}
body{
background-color: red;
}
<link href="https://cdn.rawgit.com/jonsuh/hamburgers/0aedeec9/dist/hamburgers.css" rel="stylesheet">
<button class="hamburger hamburger--emphatic is-active" type="button" id="clickme">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
Im trying to change the color from black to white. Any suggetions.
javascript html css
add a comment |
how do i change the color of hamburger menu on css. Here is my attempt
.hamburger-inner{
background-color: white;
}
body{
background-color: red;
}
<link href="https://cdn.rawgit.com/jonsuh/hamburgers/0aedeec9/dist/hamburgers.css" rel="stylesheet">
<button class="hamburger hamburger--emphatic is-active" type="button" id="clickme">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
Im trying to change the color from black to white. Any suggetions.
javascript html css
Hi, did my answer work for you?
– Nandita Sharma
Nov 27 '18 at 9:43
add a comment |
how do i change the color of hamburger menu on css. Here is my attempt
.hamburger-inner{
background-color: white;
}
body{
background-color: red;
}
<link href="https://cdn.rawgit.com/jonsuh/hamburgers/0aedeec9/dist/hamburgers.css" rel="stylesheet">
<button class="hamburger hamburger--emphatic is-active" type="button" id="clickme">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
Im trying to change the color from black to white. Any suggetions.
javascript html css
how do i change the color of hamburger menu on css. Here is my attempt
.hamburger-inner{
background-color: white;
}
body{
background-color: red;
}
<link href="https://cdn.rawgit.com/jonsuh/hamburgers/0aedeec9/dist/hamburgers.css" rel="stylesheet">
<button class="hamburger hamburger--emphatic is-active" type="button" id="clickme">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
Im trying to change the color from black to white. Any suggetions.
.hamburger-inner{
background-color: white;
}
body{
background-color: red;
}
<link href="https://cdn.rawgit.com/jonsuh/hamburgers/0aedeec9/dist/hamburgers.css" rel="stylesheet">
<button class="hamburger hamburger--emphatic is-active" type="button" id="clickme">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
.hamburger-inner{
background-color: white;
}
body{
background-color: red;
}
<link href="https://cdn.rawgit.com/jonsuh/hamburgers/0aedeec9/dist/hamburgers.css" rel="stylesheet">
<button class="hamburger hamburger--emphatic is-active" type="button" id="clickme">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
javascript html css
javascript html css
asked Nov 22 '18 at 3:16
toy moytoy moy
1698
1698
Hi, did my answer work for you?
– Nandita Sharma
Nov 27 '18 at 9:43
add a comment |
Hi, did my answer work for you?
– Nandita Sharma
Nov 27 '18 at 9:43
Hi, did my answer work for you?
– Nandita Sharma
Nov 27 '18 at 9:43
Hi, did my answer work for you?
– Nandita Sharma
Nov 27 '18 at 9:43
add a comment |
3 Answers
3
active
oldest
votes
Change the color using the following CSS
.hamburger-box .hamburger-inner,
.hamburger-box .hamburger-inner::before,
.hamburger-box .hamburger-inner::after {
background-color: white;
}
.hamburger-box .hamburger-inner,
.hamburger-box .hamburger-inner::before,
.hamburger-box .hamburger-inner::after {
background-color: white;
}
body {
background-color: red;
}
<link href="https://cdn.rawgit.com/jonsuh/hamburgers/0aedeec9/dist/hamburgers.css" rel="stylesheet">
<button class="hamburger hamburger--emphatic is-active" type="button" id="clickme">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
add a comment |
You should set the background color to the pseudo-elements before and after like this
.hamburger--emphatic.is-active .hamburger-inner::before {
background-color: white;
}
.hamburger--emphatic.is-active .hamburger-inner::after {
background-color: white;
}
add a comment |
CSS:
.hamburger-inner::before,
.hamburger-inner::after {
background:#fff;
}
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%2f53423372%2fhamburger-button-color-not-changing%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Change the color using the following CSS
.hamburger-box .hamburger-inner,
.hamburger-box .hamburger-inner::before,
.hamburger-box .hamburger-inner::after {
background-color: white;
}
.hamburger-box .hamburger-inner,
.hamburger-box .hamburger-inner::before,
.hamburger-box .hamburger-inner::after {
background-color: white;
}
body {
background-color: red;
}
<link href="https://cdn.rawgit.com/jonsuh/hamburgers/0aedeec9/dist/hamburgers.css" rel="stylesheet">
<button class="hamburger hamburger--emphatic is-active" type="button" id="clickme">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
add a comment |
Change the color using the following CSS
.hamburger-box .hamburger-inner,
.hamburger-box .hamburger-inner::before,
.hamburger-box .hamburger-inner::after {
background-color: white;
}
.hamburger-box .hamburger-inner,
.hamburger-box .hamburger-inner::before,
.hamburger-box .hamburger-inner::after {
background-color: white;
}
body {
background-color: red;
}
<link href="https://cdn.rawgit.com/jonsuh/hamburgers/0aedeec9/dist/hamburgers.css" rel="stylesheet">
<button class="hamburger hamburger--emphatic is-active" type="button" id="clickme">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
add a comment |
Change the color using the following CSS
.hamburger-box .hamburger-inner,
.hamburger-box .hamburger-inner::before,
.hamburger-box .hamburger-inner::after {
background-color: white;
}
.hamburger-box .hamburger-inner,
.hamburger-box .hamburger-inner::before,
.hamburger-box .hamburger-inner::after {
background-color: white;
}
body {
background-color: red;
}
<link href="https://cdn.rawgit.com/jonsuh/hamburgers/0aedeec9/dist/hamburgers.css" rel="stylesheet">
<button class="hamburger hamburger--emphatic is-active" type="button" id="clickme">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
Change the color using the following CSS
.hamburger-box .hamburger-inner,
.hamburger-box .hamburger-inner::before,
.hamburger-box .hamburger-inner::after {
background-color: white;
}
.hamburger-box .hamburger-inner,
.hamburger-box .hamburger-inner::before,
.hamburger-box .hamburger-inner::after {
background-color: white;
}
body {
background-color: red;
}
<link href="https://cdn.rawgit.com/jonsuh/hamburgers/0aedeec9/dist/hamburgers.css" rel="stylesheet">
<button class="hamburger hamburger--emphatic is-active" type="button" id="clickme">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
.hamburger-box .hamburger-inner,
.hamburger-box .hamburger-inner::before,
.hamburger-box .hamburger-inner::after {
background-color: white;
}
body {
background-color: red;
}
<link href="https://cdn.rawgit.com/jonsuh/hamburgers/0aedeec9/dist/hamburgers.css" rel="stylesheet">
<button class="hamburger hamburger--emphatic is-active" type="button" id="clickme">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
.hamburger-box .hamburger-inner,
.hamburger-box .hamburger-inner::before,
.hamburger-box .hamburger-inner::after {
background-color: white;
}
body {
background-color: red;
}
<link href="https://cdn.rawgit.com/jonsuh/hamburgers/0aedeec9/dist/hamburgers.css" rel="stylesheet">
<button class="hamburger hamburger--emphatic is-active" type="button" id="clickme">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
answered Nov 22 '18 at 3:29
Nandita SharmaNandita Sharma
9,7932719
9,7932719
add a comment |
add a comment |
You should set the background color to the pseudo-elements before and after like this
.hamburger--emphatic.is-active .hamburger-inner::before {
background-color: white;
}
.hamburger--emphatic.is-active .hamburger-inner::after {
background-color: white;
}
add a comment |
You should set the background color to the pseudo-elements before and after like this
.hamburger--emphatic.is-active .hamburger-inner::before {
background-color: white;
}
.hamburger--emphatic.is-active .hamburger-inner::after {
background-color: white;
}
add a comment |
You should set the background color to the pseudo-elements before and after like this
.hamburger--emphatic.is-active .hamburger-inner::before {
background-color: white;
}
.hamburger--emphatic.is-active .hamburger-inner::after {
background-color: white;
}
You should set the background color to the pseudo-elements before and after like this
.hamburger--emphatic.is-active .hamburger-inner::before {
background-color: white;
}
.hamburger--emphatic.is-active .hamburger-inner::after {
background-color: white;
}
answered Nov 22 '18 at 3:27
Ranjith BhaskaranRanjith Bhaskaran
863
863
add a comment |
add a comment |
CSS:
.hamburger-inner::before,
.hamburger-inner::after {
background:#fff;
}
add a comment |
CSS:
.hamburger-inner::before,
.hamburger-inner::after {
background:#fff;
}
add a comment |
CSS:
.hamburger-inner::before,
.hamburger-inner::after {
background:#fff;
}
CSS:
.hamburger-inner::before,
.hamburger-inner::after {
background:#fff;
}
edited Nov 22 '18 at 11:32
TheBlackBenzKid
14.6k32113180
14.6k32113180
answered Nov 22 '18 at 10:44
fatihdurnafatihdurna
262
262
add a comment |
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%2f53423372%2fhamburger-button-color-not-changing%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
Hi, did my answer work for you?
– Nandita Sharma
Nov 27 '18 at 9:43