How to change the nav breakpoint by CSS only in Bulma?
UPDATE:
I created a feature request on GitHub, you can track here.
I am using Bulma. Right now the navbar collapse and change to a burger menu when the width is less than 1088px. I hope to make it collapse only when less than around 768px or even smaller.
I read the responsive document but still cannot find a CSS only way to change it.
I hope to find a way overwrite without changing the Bulma source code. Any idea? Thanks
jsfiddle
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://bulma.io">
<img src="https://bulma.io/images/bulma-logo.png" width="112" height="28">
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item">
Home
</a>
<a class="navbar-item">
Documentation
</a>
</div>
</div>
</nav>
css bulma
add a comment |
UPDATE:
I created a feature request on GitHub, you can track here.
I am using Bulma. Right now the navbar collapse and change to a burger menu when the width is less than 1088px. I hope to make it collapse only when less than around 768px or even smaller.
I read the responsive document but still cannot find a CSS only way to change it.
I hope to find a way overwrite without changing the Bulma source code. Any idea? Thanks
jsfiddle
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://bulma.io">
<img src="https://bulma.io/images/bulma-logo.png" width="112" height="28">
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item">
Home
</a>
<a class="navbar-item">
Documentation
</a>
</div>
</div>
</nav>
css bulma
There is a way to set a variable without overwriting source code. Please take a look at my answer. stackoverflow.com/questions/52467626/…
– IvanJ
Nov 28 '18 at 21:09
add a comment |
UPDATE:
I created a feature request on GitHub, you can track here.
I am using Bulma. Right now the navbar collapse and change to a burger menu when the width is less than 1088px. I hope to make it collapse only when less than around 768px or even smaller.
I read the responsive document but still cannot find a CSS only way to change it.
I hope to find a way overwrite without changing the Bulma source code. Any idea? Thanks
jsfiddle
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://bulma.io">
<img src="https://bulma.io/images/bulma-logo.png" width="112" height="28">
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item">
Home
</a>
<a class="navbar-item">
Documentation
</a>
</div>
</div>
</nav>
css bulma
UPDATE:
I created a feature request on GitHub, you can track here.
I am using Bulma. Right now the navbar collapse and change to a burger menu when the width is less than 1088px. I hope to make it collapse only when less than around 768px or even smaller.
I read the responsive document but still cannot find a CSS only way to change it.
I hope to find a way overwrite without changing the Bulma source code. Any idea? Thanks
jsfiddle
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://bulma.io">
<img src="https://bulma.io/images/bulma-logo.png" width="112" height="28">
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item">
Home
</a>
<a class="navbar-item">
Documentation
</a>
</div>
</div>
</nav>
css bulma
css bulma
edited Dec 5 '18 at 22:41
Hongbo Miao
asked Nov 21 '18 at 5:57
Hongbo MiaoHongbo Miao
10.5k2674142
10.5k2674142
There is a way to set a variable without overwriting source code. Please take a look at my answer. stackoverflow.com/questions/52467626/…
– IvanJ
Nov 28 '18 at 21:09
add a comment |
There is a way to set a variable without overwriting source code. Please take a look at my answer. stackoverflow.com/questions/52467626/…
– IvanJ
Nov 28 '18 at 21:09
There is a way to set a variable without overwriting source code. Please take a look at my answer. stackoverflow.com/questions/52467626/…
– IvanJ
Nov 28 '18 at 21:09
There is a way to set a variable without overwriting source code. Please take a look at my answer. stackoverflow.com/questions/52467626/…
– IvanJ
Nov 28 '18 at 21:09
add a comment |
1 Answer
1
active
oldest
votes
first you need to find its css file
for example its docs.min.css
then such code :-
@media screen and (min-width: 1088px) {
.navbar,.navbar-end,.navbar-menu,.navbar-start {
align-items:stretch;
display: flex
}
^^^ this code does the modifications when screen goes below 1088
there are multiple css code in that file which starts with this:-
@media screen and (min-width: 1088px)
so, you need to find them all and replace with
@media screen and (min-width: 768px)
that's all, task done on css level :)
Thanks, however, is there a way to overwrite without changing the bulma source code?
– Hongbo Miao
Nov 21 '18 at 19:24
not specifically, but you can do some tweaks, like you can create your custom css for 768px and use it in one page and the normal one (1088px) for others
– Yash Soni
Nov 22 '18 at 3:45
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%2f53406041%2fhow-to-change-the-nav-breakpoint-by-css-only-in-bulma%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
first you need to find its css file
for example its docs.min.css
then such code :-
@media screen and (min-width: 1088px) {
.navbar,.navbar-end,.navbar-menu,.navbar-start {
align-items:stretch;
display: flex
}
^^^ this code does the modifications when screen goes below 1088
there are multiple css code in that file which starts with this:-
@media screen and (min-width: 1088px)
so, you need to find them all and replace with
@media screen and (min-width: 768px)
that's all, task done on css level :)
Thanks, however, is there a way to overwrite without changing the bulma source code?
– Hongbo Miao
Nov 21 '18 at 19:24
not specifically, but you can do some tweaks, like you can create your custom css for 768px and use it in one page and the normal one (1088px) for others
– Yash Soni
Nov 22 '18 at 3:45
add a comment |
first you need to find its css file
for example its docs.min.css
then such code :-
@media screen and (min-width: 1088px) {
.navbar,.navbar-end,.navbar-menu,.navbar-start {
align-items:stretch;
display: flex
}
^^^ this code does the modifications when screen goes below 1088
there are multiple css code in that file which starts with this:-
@media screen and (min-width: 1088px)
so, you need to find them all and replace with
@media screen and (min-width: 768px)
that's all, task done on css level :)
Thanks, however, is there a way to overwrite without changing the bulma source code?
– Hongbo Miao
Nov 21 '18 at 19:24
not specifically, but you can do some tweaks, like you can create your custom css for 768px and use it in one page and the normal one (1088px) for others
– Yash Soni
Nov 22 '18 at 3:45
add a comment |
first you need to find its css file
for example its docs.min.css
then such code :-
@media screen and (min-width: 1088px) {
.navbar,.navbar-end,.navbar-menu,.navbar-start {
align-items:stretch;
display: flex
}
^^^ this code does the modifications when screen goes below 1088
there are multiple css code in that file which starts with this:-
@media screen and (min-width: 1088px)
so, you need to find them all and replace with
@media screen and (min-width: 768px)
that's all, task done on css level :)
first you need to find its css file
for example its docs.min.css
then such code :-
@media screen and (min-width: 1088px) {
.navbar,.navbar-end,.navbar-menu,.navbar-start {
align-items:stretch;
display: flex
}
^^^ this code does the modifications when screen goes below 1088
there are multiple css code in that file which starts with this:-
@media screen and (min-width: 1088px)
so, you need to find them all and replace with
@media screen and (min-width: 768px)
that's all, task done on css level :)
answered Nov 21 '18 at 7:30


Yash SoniYash Soni
47510
47510
Thanks, however, is there a way to overwrite without changing the bulma source code?
– Hongbo Miao
Nov 21 '18 at 19:24
not specifically, but you can do some tweaks, like you can create your custom css for 768px and use it in one page and the normal one (1088px) for others
– Yash Soni
Nov 22 '18 at 3:45
add a comment |
Thanks, however, is there a way to overwrite without changing the bulma source code?
– Hongbo Miao
Nov 21 '18 at 19:24
not specifically, but you can do some tweaks, like you can create your custom css for 768px and use it in one page and the normal one (1088px) for others
– Yash Soni
Nov 22 '18 at 3:45
Thanks, however, is there a way to overwrite without changing the bulma source code?
– Hongbo Miao
Nov 21 '18 at 19:24
Thanks, however, is there a way to overwrite without changing the bulma source code?
– Hongbo Miao
Nov 21 '18 at 19:24
not specifically, but you can do some tweaks, like you can create your custom css for 768px and use it in one page and the normal one (1088px) for others
– Yash Soni
Nov 22 '18 at 3:45
not specifically, but you can do some tweaks, like you can create your custom css for 768px and use it in one page and the normal one (1088px) for others
– Yash Soni
Nov 22 '18 at 3:45
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%2f53406041%2fhow-to-change-the-nav-breakpoint-by-css-only-in-bulma%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
There is a way to set a variable without overwriting source code. Please take a look at my answer. stackoverflow.com/questions/52467626/…
– IvanJ
Nov 28 '18 at 21:09