Site logo

Archived topic

Mellow Theme - Next/Previous Navigation Buttons Mobile

9 replies · Started by Alex on April 27, 2020

Viewing posts 1–10 of 10

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!

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%;
    }
}

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

Try this:

@media (max-width: 768px) {
    .page-numbers:not(.next):not(.prev) {
        display: none;
    }

    .nav-links {
        text-align: center;
    }
}

Thanks Tom! :)
Problem solved!

Glad I could help :)

Sorry, one more question (for a pretty look :D ):
how can i put this buttons in the middle (both) or to the margins ("previous" to the left - "next" to the right)?

Many thanks!

Is great now! :) Thank you, Tom!

You're welcome :)

This archived topic is closed to new replies.