Centering logo above nav menu

How would I center the logo above the menu, because at the moment the logo is above but a skewed to the left of the page.

Could you post your website URL? Logo should be in line with navigation bar unless you have created a huge logo.

Yes,

URL: ifixrolex.com
Logion: colorlib-access

I did create a large logo, but because otherwise the logo ends up looking to small on mobile and desktop, especially desktop.

Why does logo have to be in line with navigation bar?

Can I modify the desktop version to have logo the way it currently is, but centered, and of course not messing with the theme’s functionality?

The theme is designed that way with small logo but it can be tweaked by adding this code to Theme Options - Other - Custom CSS

@media (min-width:768px){
    .navbar-header{
        float:none
    }
}

#logo {
   text-align: center;
}

AWESOME! Thanks a million.