DEV Community

Sampson Ovuoba for Devwares

Posted on • Originally published at devwares.com on

How To Create A Beautiful Navbar Using Bootstrap 5.

A navigation bar, which is often called a navbar, is one of, if not the most important, component or element of a website. This is so because it usually is the first thing a person searches for when they’re on a website as it lets them properly navigate through the website. This is because the bootstrap navbar links to the other pages the website has to offer.

A poorly constructed navigation bar or bootstrap navbar heavily impacts the overall experience a person gets from using a website whereas A BEAUTIFUL NAVBAR makes the experience of using a website a pleasant and enjoyable one.

This article aims to describe, step by step, how to build a functional and beautiful bootstrap 5 navbar using bootstrap 5 and a cool new UI kit called Contrast.

FIRST OFF:

Let me refresh our minds on what Bootstrap is. Bootstrap is one of, if not the most popular CSS Framework/front-end open source toolkit for developing responsive and mobile-first websites.

It features SASS variables, mixins, a responsive grid system, extensive prebuilt components, and powerful JavaScript plugins. Bootstraps newest version is Bootstrap 5.

You can say Bootstrap helps you build responsive websites quickly. Now I’m sure at this point you might be asking yourself, “What is Contrast?” Do not worry, the wait is over.

CONTRAST

Contrast or Contrast Design Bootstrap is an elegant bootstrap UI kit featuring over 2000+ basic components. Contrast can be integrated with any project to build mobile first, responsive and elegant websites and webapps.

With Contrast installed, installing Bootstrap no longer becomes a necessity because Bootstrap is deeply integrated into its core. Plus, Contrast brings its 2000+ custom components to the table, making development smooth and elegant. Contrast, which was created by Devwares is available for the following technologies;

  1. Vanilla JS (contrast-bootstrap)
  2. React (cdbreact)
  3. Angular (ng-cdbangular)

Devwares also designed a Pro version of Contrast to give you accessto more features and improvements.

Click here to check it out.

We will be using the angular version of contrast in this tutorial to create the navbar. Tutorials for other versions can also be found on the docs here

Now that all that’s been taken care off, let’s find out how to create a Bootstrap navbar

STEP 1 Install Contrast

Using NPM:

npm install --save ng-cdbangular

Enter fullscreen mode Exit fullscreen mode

Using Yarn:

 yarn add ng-cdbangular

Enter fullscreen mode Exit fullscreen mode

STEP 2 Add bootstrap-css-only to angular.json

"styles": ["node_modules/bootstrap-css-only/css/bootstrap.min.css"]

Enter fullscreen mode Exit fullscreen mode

STEP 3 Import navbar module in app.module.ts

import { NavbarModule } from 'ng-cdbangular';
@NgModule({ imports: [NavbarModule]})

Enter fullscreen mode Exit fullscreen mode

NB, for our example, we will be needing some other components so our final app.module.ts file will look like this;

    import {
    NavbarModule,
    CollapseModule,
    ButtonModule,
    DropdownModule } from 'ng-cdbangular';
    @NgModule({
        imports: [NavbarModule, CollapseModule, ButtonModule, DropdownModule]
    })

Enter fullscreen mode Exit fullscreen mode

Note: instead of importing one component at a time, contrast has a module called CDBFreeModule which contains the imports of all the custom components contrast has to offer.

import { CDBFreeModule } from 'ng-cdbangular';
@NgModule({ imports: [CDBFreeModule]})

Enter fullscreen mode Exit fullscreen mode

Easy right? Now let’s dive right into the view.

HTML VIEW

A basic Contrast navbar looks like this:

<CDBNavbar style="background: black; color: #f4f4f4">
  <a href="">link</a>
</CDBNavbar>

Enter fullscreen mode Exit fullscreen mode

The a tag links you to an address specified in the href attribute.

Bootstrap Navbar

This looks... okay, but I know we can do better. Let’s add the CDBNavBrand component for brand logos and the likes

<CDBNavbar style="background: black; color: #f4f4f4">
<CDBNavBrand href="/">
<img src="" alt="Brand" class="img-fluid" width="30">
</CDBNavBrand>
</CDBNavbar>

Enter fullscreen mode Exit fullscreen mode

Note that the contents of CDBNavBrand can be anything you want eg:

<h4>Brand<h4>

Bootstrap Navbar

Now, Let’s make the navabr responsive.

<CDBNavbar style="background: black; color: #f4f4f4" [dark]=true expand="lg">
<CDBNavBrand href="/">
 <img src="" alt="Brand" class="img-fluid" width="30">
 </CDBNavBrand>
 <CDBNavToggle (click)="myNav.toggleCollapse()">
 </CDBNavToggle>
 <CDBCollapse #myNav class="w-100" [navbar]=true expand="lg">
    Lorem, ipsum dolor sit amet consectetur adipisicing elit. Aut, minus?
</CDBCollapse>
</CDBNavbar>

Enter fullscreen mode Exit fullscreen mode

Bootstrap Navbar

Bootstrap Navbar

Bootstrap Navbar

This example introduced more custom components. Let’s go through them one step at a time.

  1. The expand prop was added to the CDBNavbar component. expand="lg" tells the navbar to collapse when the viewport width is < 992px.

Acceptable breakpoints include:

  • sm = collapse when the viewport width is < 576px
  • md = collapse when the viewport width is < 768px
  • lg = collapse when the viewport width is < 992px
  • xl = collapse when the viewport width is < 1200px

[dark]=true was added because the background color is dark. [light]=true should be used when a lighter background is used.

  1. The CDBNavToggle component was added. This is Contrasts navigation bar toggler. It becomes visible only when the viewport width is lower than the specified breakpoint you put in the “expand” prop.

  2. A click event handler was added to CDBNavToggle component: (click)="myNav.toggleCollapse()". CDBNavToggle is accessing the toggleCollapse() function present in CDBCollapse in order to collapse the navigation bar programmatically through the local reference myNav.

Note: an image prop can be added to the CDBNavToggle in place on the default toggler eg:

 <CDBNavToggle (click)="myNav.toggleCollapse()" image=""></CDBNavToggle>

Enter fullscreen mode Exit fullscreen mode

Bootstrap Navbar

Here I’m using a literal hamburger :)

  1. The CDBCollapse component was added. This is the actual component that collapses the navigation bar. A local reference of #myNav is added so that the toggler can access it’s toggleCollapse function. [navbar]=true is used to inform the collapse that this instance is being used as a navigation bar.expand=”lg”, this is added to tell CDBCollapse when to collapse. Note that the same breakpoint used in the CDBNavbar component must also be used here.

Whew! Alright, now that the navbar is responsive and ready to go, let’s add some flesh to it. We’ll be making use of some other Contrast components. These components are the CDBNavItem, CDBDropDown, CDBBtn.

  • The CDBNavITem, this component creates a nav item in our navigation bar. A nav item represents an item or a navigation link to different pages or sections of a website.
  • The CDBDropDown, this Contrast Bootstrap component is used for creating dropdowns in our project.
  • The CDBBtn component creates new buttons in our project.
<CDBNavbar style="background: black; color: #f4f4f4" [dark]=true expand="lg">
    <CDBNavBrand href="/">
        <img src="" alt="Brand" class="img-fluid" width="30" />
    </CDBNavBrand>
    <CDBNavToggle (click)="myNav.toggleCollapse()" > </CDBNavToggle>
    <CDBCollapse #myNav class="w-100" [navbar]=true expand="lg">
        <CDBNavbarNav [left]=true class="align-items-center">
        <CDBNavItem>
        <CDBDropDown>
            <CDBDropDownToggle [caretDropDown]=true style="padding: 0"
            color="dark" (click)="menu.toggleDropdown($event)">
            Categories
            </CDBDropDownToggle>
        <CDBDropDownMenu #menu="cdbDropdownMenu" placement="bottom">
        Coming soon #pleaseStayUpdated.
        </CDBDropDownMenu>
        </CDBDropDown>
        </CDBNavItem>
        <CDBNavItem>
            <CDBBtn [flat]=true color="dark" style="padding: 0">
            <CDBNavLink to="/" style="color: #ffffff">Help</CDBNavLink>
        </CDBBtn>
        </CDBNavItem>
        <CDBNavItem>
            <CDBBtn [flat]=true color="dark" style="padding: 0">
            <CDBNavLink to="/" style="color: #ffffff">About</CDBNavLink>
            </CDBBtn>
        </CDBNavItem>
        </CDBNavbarNav>
        <CDBNavbarNav [right]=true>
           <CDBNavItem>
            <CDBBtn [flat]=true color="dark" style="padding: 0">
                <CDBNavLink to="/" style="color: #ffffff">EN</CDBNavLink>
            </CDBBtn>
            </CDBNavItem>
           <CDBNavItem>
            <CDBBtn [flat]=true color="dark" style="padding: 0">
                <CDBNavLink to="/" style="color: #ffffff">Login</CDBNavLink>
            </CDBBtn>
            </CDBNavItem>
            <CDBNavItem>
            <CDBBtn color="white" style="padding: 0">
                <CDBNavLink to="/" style="color: #000000;"> Sign Up </CDBNavLink>
            </CDBBtn>
            </CDBNavItem>
        </CDBNavbarNav>
    </CDBCollapse>
</CDBNavbar>

Enter fullscreen mode Exit fullscreen mode

Bootstrap NavbarBootstrap Navbar

That is the final result of what our bootstrap 5 navbar should look like and you can style the components more, anyway you wish.

You can find more information on all the components used in the navbar in the contrast documentation.

Resources

Top comments (0)