• Resolved nunoemeneves

    (@nunoemeneves)


    Hi everybody,

    I’m working on a child theme or Sundance and I am trying to center the menu.
    I haven’t been abe to find the correct CSS refrences to call it on styles.css.

    Help, anyone?

    Thank you so much for your time

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi there, this will center your menu while the full menu is active down to 600px in screen/window width. Less than that and it will return to the original design on the touch menu behind the toggle.

    @media screen and (min-width: 600px) {
    .main-navigation {
      text-align: center;
    }
    .main-navigation ul {
      display: inline-block;
    }
    }

    Hi @sacredpath,

    Thank you so much!!! It works perfect!!
    Saved me a lot a time here.

    Best

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hooray and you are welcome!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Centering menu’ is closed to new replies.