bootstrap 3 navbar list items overlap with navbar brand
I have a problem with BS3 navbar, when i change the size of the screen, navbar list items goes behind navbar brand image.
I would like navbar items to collapse into hamburger menu before they reach navbar brand. How can I achieve that?
Here is my HTML code:
<!DOCTYPE html>
<head>
<meta charset = "UTF-8">
<!-- BS, JS, FONTS -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<!-- CSS -->
<link rel = "stylesheet" type = "text/css" href = "navbarProb.css"/>
</head>
<body id="index" data-spy="scroll" data-target=".navbar" data-offset="50">
<!-- NAVBAR -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- MOBILE NAVBAR -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class = "navbar-brand" href = "#listItem1">
<img src = "https://image.ibb.co/jN2AaV/logo.jpg">
</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#listItem1">listItem1</a></li>
<li><a href="#listItem2">listItem23</a></li>
<!-- DROPDOWN NAVBAR -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">listItem3<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#listItem4">listItem4</a></li>
<li><a href="#listItem5">listItem5</a></li>
<li><a href="#listItem6">listItem6</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">listItem<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#listItem7">listItem7</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
</ul>
</li>
<li><a href="#listItem8">listItem8</a></li>
<li><a href="#listItem9">listItem9</a></li>
<li><a href="#listItem10">listItem10</a></li>
</ul>
</div>
</div>
</nav>
Thanks!
html css twitter-bootstrap navbar
add a comment |
I have a problem with BS3 navbar, when i change the size of the screen, navbar list items goes behind navbar brand image.
I would like navbar items to collapse into hamburger menu before they reach navbar brand. How can I achieve that?
Here is my HTML code:
<!DOCTYPE html>
<head>
<meta charset = "UTF-8">
<!-- BS, JS, FONTS -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<!-- CSS -->
<link rel = "stylesheet" type = "text/css" href = "navbarProb.css"/>
</head>
<body id="index" data-spy="scroll" data-target=".navbar" data-offset="50">
<!-- NAVBAR -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- MOBILE NAVBAR -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class = "navbar-brand" href = "#listItem1">
<img src = "https://image.ibb.co/jN2AaV/logo.jpg">
</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#listItem1">listItem1</a></li>
<li><a href="#listItem2">listItem23</a></li>
<!-- DROPDOWN NAVBAR -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">listItem3<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#listItem4">listItem4</a></li>
<li><a href="#listItem5">listItem5</a></li>
<li><a href="#listItem6">listItem6</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">listItem<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#listItem7">listItem7</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
</ul>
</li>
<li><a href="#listItem8">listItem8</a></li>
<li><a href="#listItem9">listItem9</a></li>
<li><a href="#listItem10">listItem10</a></li>
</ul>
</div>
</div>
</nav>
Thanks!
html css twitter-bootstrap navbar
add a comment |
I have a problem with BS3 navbar, when i change the size of the screen, navbar list items goes behind navbar brand image.
I would like navbar items to collapse into hamburger menu before they reach navbar brand. How can I achieve that?
Here is my HTML code:
<!DOCTYPE html>
<head>
<meta charset = "UTF-8">
<!-- BS, JS, FONTS -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<!-- CSS -->
<link rel = "stylesheet" type = "text/css" href = "navbarProb.css"/>
</head>
<body id="index" data-spy="scroll" data-target=".navbar" data-offset="50">
<!-- NAVBAR -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- MOBILE NAVBAR -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class = "navbar-brand" href = "#listItem1">
<img src = "https://image.ibb.co/jN2AaV/logo.jpg">
</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#listItem1">listItem1</a></li>
<li><a href="#listItem2">listItem23</a></li>
<!-- DROPDOWN NAVBAR -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">listItem3<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#listItem4">listItem4</a></li>
<li><a href="#listItem5">listItem5</a></li>
<li><a href="#listItem6">listItem6</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">listItem<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#listItem7">listItem7</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
</ul>
</li>
<li><a href="#listItem8">listItem8</a></li>
<li><a href="#listItem9">listItem9</a></li>
<li><a href="#listItem10">listItem10</a></li>
</ul>
</div>
</div>
</nav>
Thanks!
html css twitter-bootstrap navbar
I have a problem with BS3 navbar, when i change the size of the screen, navbar list items goes behind navbar brand image.
I would like navbar items to collapse into hamburger menu before they reach navbar brand. How can I achieve that?
Here is my HTML code:
<!DOCTYPE html>
<head>
<meta charset = "UTF-8">
<!-- BS, JS, FONTS -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<!-- CSS -->
<link rel = "stylesheet" type = "text/css" href = "navbarProb.css"/>
</head>
<body id="index" data-spy="scroll" data-target=".navbar" data-offset="50">
<!-- NAVBAR -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- MOBILE NAVBAR -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class = "navbar-brand" href = "#listItem1">
<img src = "https://image.ibb.co/jN2AaV/logo.jpg">
</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#listItem1">listItem1</a></li>
<li><a href="#listItem2">listItem23</a></li>
<!-- DROPDOWN NAVBAR -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">listItem3<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#listItem4">listItem4</a></li>
<li><a href="#listItem5">listItem5</a></li>
<li><a href="#listItem6">listItem6</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">listItem<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#listItem7">listItem7</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
</ul>
</li>
<li><a href="#listItem8">listItem8</a></li>
<li><a href="#listItem9">listItem9</a></li>
<li><a href="#listItem10">listItem10</a></li>
</ul>
</div>
</div>
</nav>
Thanks!
<!DOCTYPE html>
<head>
<meta charset = "UTF-8">
<!-- BS, JS, FONTS -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<!-- CSS -->
<link rel = "stylesheet" type = "text/css" href = "navbarProb.css"/>
</head>
<body id="index" data-spy="scroll" data-target=".navbar" data-offset="50">
<!-- NAVBAR -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- MOBILE NAVBAR -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class = "navbar-brand" href = "#listItem1">
<img src = "https://image.ibb.co/jN2AaV/logo.jpg">
</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#listItem1">listItem1</a></li>
<li><a href="#listItem2">listItem23</a></li>
<!-- DROPDOWN NAVBAR -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">listItem3<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#listItem4">listItem4</a></li>
<li><a href="#listItem5">listItem5</a></li>
<li><a href="#listItem6">listItem6</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">listItem<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#listItem7">listItem7</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
</ul>
</li>
<li><a href="#listItem8">listItem8</a></li>
<li><a href="#listItem9">listItem9</a></li>
<li><a href="#listItem10">listItem10</a></li>
</ul>
</div>
</div>
</nav>
<!DOCTYPE html>
<head>
<meta charset = "UTF-8">
<!-- BS, JS, FONTS -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<!-- CSS -->
<link rel = "stylesheet" type = "text/css" href = "navbarProb.css"/>
</head>
<body id="index" data-spy="scroll" data-target=".navbar" data-offset="50">
<!-- NAVBAR -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- MOBILE NAVBAR -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class = "navbar-brand" href = "#listItem1">
<img src = "https://image.ibb.co/jN2AaV/logo.jpg">
</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#listItem1">listItem1</a></li>
<li><a href="#listItem2">listItem23</a></li>
<!-- DROPDOWN NAVBAR -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">listItem3<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#listItem4">listItem4</a></li>
<li><a href="#listItem5">listItem5</a></li>
<li><a href="#listItem6">listItem6</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">listItem<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#listItem7">listItem7</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
<li><a href="#">listItem</a></li>
</ul>
</li>
<li><a href="#listItem8">listItem8</a></li>
<li><a href="#listItem9">listItem9</a></li>
<li><a href="#listItem10">listItem10</a></li>
</ul>
</div>
</div>
</nav>
html css twitter-bootstrap navbar
html css twitter-bootstrap navbar
edited Nov 21 '18 at 10:26
Wildchild
110311
110311
asked Nov 21 '18 at 7:41
j.b.j.b.
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
@j.b
Bootstrap converts the navigation to hamburger below 767px and in your expected scenario, it should convert after 1021px which is not possible if you want to make it possible you have to write a media query @media (max-width: 1021px)
and your hamburger code.
let me know if you need anything.
Hello Atul, thanks for getting involved! when i change media query in my css to @media (min-width:1021px) { .navbar-right { position: absolute; right: 10px; } } , navbar items drop down to second row when they reach navbar brand...
– j.b.
Nov 21 '18 at 8:03
you don't have to put CSS absolute you just need to put the hamburger code.
– Atul Bhalerao
Nov 22 '18 at 9:13
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%2f53407316%2fbootstrap-3-navbar-list-items-overlap-with-navbar-brand%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
@j.b
Bootstrap converts the navigation to hamburger below 767px and in your expected scenario, it should convert after 1021px which is not possible if you want to make it possible you have to write a media query @media (max-width: 1021px)
and your hamburger code.
let me know if you need anything.
Hello Atul, thanks for getting involved! when i change media query in my css to @media (min-width:1021px) { .navbar-right { position: absolute; right: 10px; } } , navbar items drop down to second row when they reach navbar brand...
– j.b.
Nov 21 '18 at 8:03
you don't have to put CSS absolute you just need to put the hamburger code.
– Atul Bhalerao
Nov 22 '18 at 9:13
add a comment |
@j.b
Bootstrap converts the navigation to hamburger below 767px and in your expected scenario, it should convert after 1021px which is not possible if you want to make it possible you have to write a media query @media (max-width: 1021px)
and your hamburger code.
let me know if you need anything.
Hello Atul, thanks for getting involved! when i change media query in my css to @media (min-width:1021px) { .navbar-right { position: absolute; right: 10px; } } , navbar items drop down to second row when they reach navbar brand...
– j.b.
Nov 21 '18 at 8:03
you don't have to put CSS absolute you just need to put the hamburger code.
– Atul Bhalerao
Nov 22 '18 at 9:13
add a comment |
@j.b
Bootstrap converts the navigation to hamburger below 767px and in your expected scenario, it should convert after 1021px which is not possible if you want to make it possible you have to write a media query @media (max-width: 1021px)
and your hamburger code.
let me know if you need anything.
@j.b
Bootstrap converts the navigation to hamburger below 767px and in your expected scenario, it should convert after 1021px which is not possible if you want to make it possible you have to write a media query @media (max-width: 1021px)
and your hamburger code.
let me know if you need anything.
answered Nov 21 '18 at 7:55
Atul BhaleraoAtul Bhalerao
497
497
Hello Atul, thanks for getting involved! when i change media query in my css to @media (min-width:1021px) { .navbar-right { position: absolute; right: 10px; } } , navbar items drop down to second row when they reach navbar brand...
– j.b.
Nov 21 '18 at 8:03
you don't have to put CSS absolute you just need to put the hamburger code.
– Atul Bhalerao
Nov 22 '18 at 9:13
add a comment |
Hello Atul, thanks for getting involved! when i change media query in my css to @media (min-width:1021px) { .navbar-right { position: absolute; right: 10px; } } , navbar items drop down to second row when they reach navbar brand...
– j.b.
Nov 21 '18 at 8:03
you don't have to put CSS absolute you just need to put the hamburger code.
– Atul Bhalerao
Nov 22 '18 at 9:13
Hello Atul, thanks for getting involved! when i change media query in my css to @media (min-width:1021px) { .navbar-right { position: absolute; right: 10px; } } , navbar items drop down to second row when they reach navbar brand...
– j.b.
Nov 21 '18 at 8:03
Hello Atul, thanks for getting involved! when i change media query in my css to @media (min-width:1021px) { .navbar-right { position: absolute; right: 10px; } } , navbar items drop down to second row when they reach navbar brand...
– j.b.
Nov 21 '18 at 8:03
you don't have to put CSS absolute you just need to put the hamburger code.
– Atul Bhalerao
Nov 22 '18 at 9:13
you don't have to put CSS absolute you just need to put the hamburger code.
– Atul Bhalerao
Nov 22 '18 at 9:13
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%2f53407316%2fbootstrap-3-navbar-list-items-overlap-with-navbar-brand%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