Site logo

[Resolved] Centralising secondary nav on mobile

Home Forums Support [Resolved] Centralising secondary nav on mobile

Home Forums Support Centralising secondary nav on mobile

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2080176
    Keith Taylor

    Hi

    I’d like to centralise my secondary nav menu on mobile only. I tried this:

    @media (max-width: 768px) {
        .secondary-navigation {
            text-align: center;
        }
        .secondary-navigation li {
            float: none;
            display: inline-block;
        }
    }

    …but no luck.

    Many thanks for your help.

    Keith
    GeneratePress 3.1.0
    GP Premium 2.1.1

    #2080181
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    @media(max-width: 768px) {
        .secondary-nav-aligned-right #secondary-navigation .inside-navigation {
            justify-content: center;
        }
    }
    #2082942
    Keith Taylor

    Hi David, works perfectly, many thanks!

    Keith

    #2082986
    David
    Staff
    Customer Support

    Glad to hear that

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.