Site logo

Archived topic

How to Change Mega Menu Size and Center It?

3 replies · Started by bluebit on October 14, 2021

Viewing posts 1–4 of 4

So I read this: https://docs.generatepress.com/article/building-simple-mega-menu/

and inside the CSS code, this part I tried to change:

From this:

nav .main-nav .mega-menu > ul {
position: absolute;
width: 100%;
left: 0 !important;
display: flex;
flex-wrap: wrap;
}

To this:

nav .main-nav .mega-menu > ul {
position: absolute;
width: 90%;
center: 0 !important;
display: flex;
flex-wrap: wrap;
}

So I only changed width and from "left" to "center" but for some reason the word "center" doesn't work. How can I center the mega menu after I changed the width? Thanks

Hi there,

centeris not a valid CSS property.

If you want to move its position, try change the value but not the property, so in this case, you can try eg. 20% or 50px instead of 0.

It worked, thank you.

No problem :)

This archived topic is closed to new replies.