Menu bar center

Hello :slight_smile:

How can i change the position from the Menu bar?
More to the right or maybe even center it?
My website http://www.jailbreaklab.eu

Hi @hooiin2,

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

You can try making it center by adding the following CSS code in the Custom CSS option of your theme on the below path.

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

@media only screen and (min-width: 767px){
#main-nav .container {
    display: table;
}	
}

Best Regards,
Movin

Hey Movin :slight_smile: it is nearly perfect as centered. But it is a little bit to right.
Is it possible to put it more to the left?
That the last button(About) gets behind the article, if you watch vertically.

Thank you soo much Movin :))

I visited your shared site to troubleshoot the issue but your site is not displaying any menu bar as shown in the attached screenshot.

Please advise.

Oh sorry Movin I forgot to set the menu in the english version.
Now it shows the menu bar again:)

I visited your site again and the menu is displaying center aligned for me but if you still want to move it to the left then please try using the below CSS code removing the above shared CSS code.


@media only screen and (min-width: 767px){
#main-nav .container {
    display: table;
    padding-right: 5px;
}
}

Please change the value 5px in the above code to move it more to the left.