[Empire theme] Can anyone help me centre the entire nav bar components

okay so when my website is in full screen desktop mode my menu items sit to the left

has anyone here been able to centre this and if so how did u manage to do this

many thanks

1 Like

Hi @CatchaCloud ,

Some of us developers do not have access to a paid theme, it would be great if you can share your website so we can give you an specific code

hi there thanks for the reply

my website is http://catchacloud.co.uk

i will set the viewing password to your name once you have taken a look can u reply so i can change it back as i am under development right now

1 Like

Got it. Thank you

@CatchaCloud ,

Here you go.

  1. From your Admin store, go to Online store > Themes > Click Actions > Edit code
  2. Open the Asset folder, and find the theme.css file.
  3. Add the code below.
ul.navmenu.navmenu-depth-1 {
    margin: auto;
}
1 Like

Hi @made4Uo ,

You can solve it by adding this CSS code to your theme.css file

.site-navigation {
justify-content: space-around !important;
align-content: space-around;
}
1 Like