Viewing 3 replies - 1 through 3 (of 3 total)
  • hannah

    (@hannahritner)

    Hey,
    You can do that with css like this:
    nav.woocommerce-pagination {
    text-align: center;
    }
    Hope it helps!

    Best,
    Hannah

    Thread Starter teppestudio

    (@teppestudio)

    Thank you, I copied your CSS, but the pagination buttons are still on the left side. Tried the same CSS with align right, but nothing happens.

    hannah

    (@hannahritner)

    Hey,
    It looks like you’re adding this to your css:

    /*nav.woocommerce-pagination {
    text-align: right;
    }*/

    You just need to change that to this:

    nav.woocommerce-pagination {
    text-align: right;
    }

    Adding /* */ allows you to block out text from the code. So in your situation it’s blocking out the code if that makes sense.

    Kindly,
    Hannah

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘align pagination’ is closed to new replies.