Logo in the center of the page.

Is there a way to put the logo in the middle (cantered) instead of the left of the page?

Hi @arjans,

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 -> Dazzling Options -> Other -> Custom CSS


#page .navbar-header {
    display: table;
    margin: 0 auto;
    float: none;
}

Best Regards,
Movin