Site logo

Archived topic

Center Main Nav @Media size

6 replies · Started by Chris on August 10, 2017

Viewing posts 1–7 of 7

How do I center the main nave at a certain media size? I'm not able to figure it out.

http://i.imgur.com/3NH5y8t.jpg

Thanks!
CDS

Hi there,

Can you link me to the page? Thanks!

Oh. and only below 768 px. I forgot that part.

Thanks!
CDS

You only want to center it on mobile? So it only applies to the mobile menu?

Right before the mobile. Like this.

http://i.imgur.com/Aghibny.jpg

You tell me how to center it and I can work out the sizes.

Cool?

Thanks!
CDS

You could do something like this:

@media (max-width: 1000px) {
    .nav-float-right .inside-header .main-navigation {
        float: none;
        text-align: center;
    }

    .nav-float-right .main-navigation li {
        float: none;
        display: inline-block;
    }
}
This archived topic is closed to new replies.