Center navbar

Hello,

give a component with center Navbar?

Greets.

What do you require to be centered?

Your thread is pretty vague

i want to make a center Navbar on the middle of the page.

Ok why not write some css to centre align the navbar.

Do you want the brand name centred or just the links? You could do this within the app easily already.

no i think, give a ready component :-)

a another question, can i change the main font ? i have a lock for the editor and i cant edit, when i overwirte the style then Bootstrapstudio dont show it.

to center links you need to change this part of the locked default Bootstrap CSS:;

@media (min-width:768px) {
  .navbar-nav {
    float:left;
    margin:0;
  }
}

so in 'styles' pane create a new user.css style and paste this:

@media (min-width: 768px) {
    .navbar .navbar-nav {
        display: inline-block;
        float: none;
        vertical-align: top;
    }

    .navbar .navbar-collapse {
        text-align: center;
    }
}

you can import google fonts to change the default fonts being used.

Marrco has supplied the answer to what you need to do here to solve your issue.

to use this app to its best potential it does require a little bit CSS and HTML knowledge

i can very good CSS and HTML, i cant edit the main code, this is locked! To change main font. Sorry i dont export and change on brackets and again again again - thats bad!

i want change font on Bootstrap Studio to live see, feauteres , cant change the font on Bootstrap Studid :/

Sorry for my bad englisch

To change the font all you have to do is duplicate the class/id that you are wanting to change and then alter the attributes you want to be different (this is for anything you want to change in the default locked BS files).

To duplicate a class go to the right side of the class name in the Styles window, above the file name that the style is located in and you'll see the vertical set of dots there. Click that and it will give you a dropdown menu. Choose duplicate and be sure to edit the one "below" the original so it puts it in the right order in the CSS file).

The only difference for the fonts and the rest of the files is that the font has to be an included font, or it has to be a Google font. You need to reference the font exactly, not just the google font site. Find the font on Google fonts site and it has the ability there to get the link to that font (for BSS I would suggest you import single fonts rather than a bunch of fonts in one file as there is no way to remove those fonts from the BSS setup as of yet.)

I usually find a few fonts and import each of them using the Google links, and then find the ones I want to use with trial and error in the CSS by changing the font in the CSS to each of them to see which I like best.

Simple as can be and no editing necessary outside of BSS for this.

to find and link google fonts i use http://fontcdn.org/ hth

i have tried to overwrite the font, dont work!

I made new css and change the font from html / body or nav.

The change dont show.

How to change the nav bar brand name to the centre?