postImage

Bootstrap 5 navbar-How To Create A Beautiful Navbar Using Bootstrap 5.

blogImage

By Tobi Osimosu

Frontend Developer

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 5 navbar links to the other pages the website has to offer.


A poorly constructed navigation bar or bootstrap 5 navbar heavily impacts the overall experience a person gets from using a website whereas A BEAUTIFUL BOOTSTRAP 5 NAVBAR makes the experience of using a website a pleasant 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 toolkits for developing responsive and mobile-first websites.

It features SASS variables, mixins, a responsive grid system, extensive prebuilt components, and powerful JavaScript plugins. Bootstrap's 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 Bootstrap 5 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 web apps.

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 access to 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 of, let’s find out how to create a Bootstrap navbar

STEP 1 Install Contrast

Using NPM:

js
npm install --save ng-cdbangular

Using Yarn:

js
yarn add ng-cdbangular

STEP 2 Add bootstrap CSS to angular.json

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

STEP 3 Import the navbar module in app.module.ts

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

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

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

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

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

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

HTML VIEW

A basic Contrast navbar looks like this:

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

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

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

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

<h4>Brand<h4>

Bootstrap Navbar

Now, Let’s make the navbar responsive.

js
<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>

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 the Contrasts navigation bar toggled. 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 the CDBNavToggle component: (click)="myNav.toggleCollapse()". CDBNavToggle is accessing the toggleCollapse() function present in CDBCollapse 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:

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

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 its 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.
typescript
<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>

Bootstrap Navbar Bootstrap Navbar

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

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

Build modern projects using Bootstrap 5 and Contrast

Trying to create components and pages for a web app or website from scratch while maintaining a modern User interface can be very tedious. This is why we created Contrast, to help drastically reduce the amount of time we spend doing that. so we can focus on building some other aspects of the project.

Contrast Bootstrap PRO consists of a Premium UI Kit Library featuring over 10000+ component variants. Which even comes bundled together with its own admin template comprising of 5 admin dashboards and 23+ additional admin and multipurpose pages for building almost any type of website or web app.
See a demo and learn more about Contrast Bootstrap Pro by clicking here.

ad-banner

Related Posts

Comments

...