Home Forums WoodMart support forum Increase font-size of pagination in shop page

Increase font-size of pagination in shop page

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #239892

    Jeriss Cloud Center
    Participant

    Dear,

    I had a feedback from a customer (and I noticed actually many customers) who didn’t notice the pagination at the shop page. So I’m trying to increase the font-size of those pagination. But I’m not sure which one of the css class I’m supposed to add. See screenshot.

    span.page-numbers.current {
    font-size : XX px
    }

    OR

    .woocommerce-pagination li .page-numbers {
    font-size : XX px
    }

    Thanks

    #239893

    Jeriss Cloud Center
    Participant

    fount it it’s ok thanks

    #239894

    Jeriss Cloud Center
    Participant

    Actually no I didn’t manage to find it, I tried the following

    .woocommerce-pagination li .page-numbers {
    	font-size: 18px;
    	padding-right: 10px;
    	padding-right: 10px;
    	padding-top: 5px;
    	padding-bottom: 5px;
    }

    but it’s causing an issue of arrows, which I don’t know where it comes from. you have any idea how I could better increase the size of the shop page pagination?

    thanks

    Attachments:
    You must be logged in to view attached files.
    #239996

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .woocommerce-pagination li .next:before, 
    body .woocommerce-pagination li .prev:before {
        font-size: 20px;
    }

    Change “20” for any size you need.

    Best Regards

    #239999

    Jeriss Cloud Center
    Participant

    Hi,

    Thanks for the help, I tried the code but modifies only the arrow (see screenshot).

    How about the numbers?

    Thanks

    Attachments:
    You must be logged in to view attached files.
    #240011

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .woocommerce-pagination li .page-numbers {
        min-width: 34px;
        height: 34px;
        font-size: 30px;
        line-height: 32px;
    }

    Change the values as per your needs.

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)