Menu left alignment

I’m not able to align the menu all the way to the left on a blog that uses the Sparkling theme.

Using the custom CSS code below suggested on Github doesn’t bring it all the way to the left either, now it’s not aligned with anything else.

Location
http://lexiconleadership.com/

@media (min-width: 768px){
#page .navbar-header {
    float: right;
}
#page .nav.navbar-nav {
    float: left;
}
}

Hey there,
I hope you’re doing well today

The menu isn’t going all the way left because there’s still padding on the menu container and menu item.
here’s the CSS that would remove the padding making the menu flush.

/*remove menu padding*/
.collapse.navbar-collapse.navbar-ex1-collapse {
    padding-left: 0px;
}
#menu-item-87 > a{
  padding-left: 0px;
}

Best Regards,
Support

Yes, very nice.
Thanks a bunch !

Hey there,

Happy to assist you, please let me know if there’s anything you’d like help with.

Best Regards,
Support