• Resolved lej22

    (@lej22)


    is there any way to center justify the primary navigation. as the screen size shrinks, the navigation splits into two rows which is currently left justified, I would like to be centre. Thank you.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Theme Author WebHunt Infotech

    (@webhuntinfotech)

    Hello,

    Try to put below CSS rules into Custom CSS Editor:

    @media (min-width: 991px){
    	.navbar-collapse.collapse {
    		text-align: center;
    	}
    	.navbar-nav > li {
    		float: unset;
    	}
    	.nav > li {
    		display: inline-block;
    	}
    }

    Save the changes.

    Let us know for further assistance.

    Thank You

Viewing 1 replies (of 1 total)

The topic ‘center justify primary navigation’ is closed to new replies.