How to change the nav breakpoint by CSS only in Bulma?












1














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>









share|improve this question
























  • 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 at 21:09


















1














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>









share|improve this question
























  • 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 at 21:09
















1












1








1







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>









share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 5 at 22:41

























asked Nov 21 at 5:57









Hongbo Miao

10.1k2672140




10.1k2672140












  • 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 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 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 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 at 21:09














1 Answer
1






active

oldest

votes


















0














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 :)






share|improve this answer





















  • Thanks, however, is there a way to overwrite without changing the bulma source code?
    – Hongbo Miao
    Nov 21 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 at 3:45











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
});


}
});














draft saved

draft discarded


















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









0














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 :)






share|improve this answer





















  • Thanks, however, is there a way to overwrite without changing the bulma source code?
    – Hongbo Miao
    Nov 21 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 at 3:45
















0














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 :)






share|improve this answer





















  • Thanks, however, is there a way to overwrite without changing the bulma source code?
    – Hongbo Miao
    Nov 21 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 at 3:45














0












0








0






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 :)






share|improve this answer












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 :)







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 21 at 7:30









Yash Soni

47510




47510












  • Thanks, however, is there a way to overwrite without changing the bulma source code?
    – Hongbo Miao
    Nov 21 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 at 3:45


















  • Thanks, however, is there a way to overwrite without changing the bulma source code?
    – Hongbo Miao
    Nov 21 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 at 3:45
















Thanks, however, is there a way to overwrite without changing the bulma source code?
– Hongbo Miao
Nov 21 at 19:24




Thanks, however, is there a way to overwrite without changing the bulma source code?
– Hongbo Miao
Nov 21 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 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 at 3:45


















draft saved

draft discarded




















































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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

To store a contact into the json file from server.js file using a class in NodeJS

Redirect URL with Chrome Remote Debugging Android Devices

Dieringhausen