Logo and navbar centering

Hey colorlibers :slight_smile: Is it possible to center the logo and put navbar under it, also centered, something like this (www.jutarnji.hr):

Hi @tkalcho,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

@media all and (min-width: 768px) {
#site-navigation .module-group.right .module.left {
    float: left;
}
#site-navigation .module-group.right {
    clear: both;
    width: 100%;
}
#site-navigation .module.left {
    float: none;
    text-align: center;
    display: block;
}
}

Best Regards,
Movin