[Resolved] Mellow Theme – Next/Previous Navigation Buttons Mobile

Home Forums Support [Resolved] Mellow Theme – Next/Previous Navigation Buttons Mobile

Home Forums Support Mellow Theme – Next/Previous Navigation Buttons Mobile

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1257600
    Alex

    Hey,

    I have a situation with Next/Previous Navigation Buttons on mobile. I don’t like how the navigation shows up.
    Can you help me with some easy advice to resolve/adjust this appearance?
    Capture here: https://ibb.co/TkRj4g6

    Thanks!

    #1257693
    David
    Staff
    Customer Support

    Hi there,

    try adding this CSS to your site:

    @media(max-width: 500px) {
        #nav-below {
            margin-left: 20px;
            margin-right: 20px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
        
        }
        .nav-links > * {
            margin-bottom: 0.25em;
            flex: 1;
            box-sizing: border-box;
            text-align: center;
        }
        
        .nav-links .prev,
        .nav-links .next {
            flex: 1 0 100%;
        }
    }
    #1258098
    Alex

    Thanks David! Much better!
    And if i want to display only previous and next button?

    #1258698
    Tom
    Lead Developer
    Lead Developer

    Try this:

    @media (max-width: 768px) {
        .page-numbers:not(.next):not(.prev) {
            display: none;
        }
    
        .nav-links {
            text-align: center;
        }
    }
    #1259393
    Alex

    Thanks Tom! πŸ™‚
    Problem solved!

    #1259907
    Tom
    Lead Developer
    Lead Developer

    Glad I could help πŸ™‚

    #1271609
    Alex

    Sorry, one more question (for a pretty look πŸ˜€ ):
    how can i put this buttons in the middle (both) or to the margins (“previous” to the left – “next” to the right)?

    Many thanks!

    #1272372
    Tom
    Lead Developer
    Lead Developer
    #1273310
    Alex

    Is great now! πŸ™‚ Thank you, Tom!

    #1274130
    Tom
    Lead Developer
    Lead Developer

    You’re welcome πŸ™‚

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