Woocommerce product pagination broken

After an update the pagination style has been broken. Please see http://absolonia.com/norsk/produktkategori/servanter/ I need a fix for this :slight_smile:

Hello @chelling,

Thanks for asking. :slight_smile:

You can add following CSS under X > Launch > Options > CSS to fix pagination issue:

ul.page-numbers {
    margin: 0;
    display: inline-block;
    text-align: center;
}

ul.page-numbers li {
    display: inline;
}

ul.page-numbers span {padding-left: 5px;float: left;margin: 0 0.35em;width: 25px;height: 30px;font-size: 15px;font-weight: 400;line-height: 32px;text-decoration: none;text-shadow: 0 1px 1px rgba(255,255,255,0.85);color: #484848;background-color: #fff;border-radius: 4px;box-shadow: inset 0 0 0 transparent, 0 0.1em 0.45em 0 rgba(0,0,0,0.25);}

span.page-numbers.current {
    background-color: #ebebe9;
}

nav.woocommerce-pagination {
    margin: 0 auto;
    text-align: center;
    width: 50%;
}

ul.page-numbers a{float: left;
    margin: 0 0.35em;
    width: 32px;
    height: 32px;
    font-size: 13px;
    font-weight: 400;
    line-height: 32px;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(255,255,255,0.85);
    color: #bababa;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: inset 0 0 0 transparent, 0 0.1em 0.45em 0 rgba(0,0,0,0.25);}  

Thanks.

Perfect. Thanks!

Youโ€™re welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.