Why isn't my website's navigation bar appearing?

The navigation bar is not showing on my site. I shows in my design. Why is this happening?

Hello @ashaheed ,

Please share:

  • your store URL;
  • page URL with the issue you mention;
  • storefront password (if your store has one).

If the store is not online yet, please follow this quick tutorial to learn how to safely and temporarily share an offline/unpublished theme URL.

Kind regards,
Diego

Www.Bombandthebeautiful.com
Its online
Its the main homepage of my website

please remove below css in your theme.css file

.small–hide {
display: none! Important;

}

hello @ashaheed

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media only screen and (min-width: 749px){
.site-header  .grid  .small--hide{
	display: block ! Important;
}
}

Please follow the steps:

  • Step 1: Go to Online store > Themes > Actions > Edit code.
  • Step 2: Go to Assets > theme.css and paste this at the bottom of the file:
    @media only screen and (min-width: 750px){
    #AccessibleNav{
    display: block !important;
    }
    }