How can I change the navigation numbers font? Already tried .pagination but not working. Thanks!
Hi @pjk3635 ,
You can try follow the instruction below:
- Go to Online Store → Theme → Edit code.
- Asset → create separate css file for css code then paste code below in the file.
Ex: /custom.css
.pagination li, .pagination li.pagination-number a {
font-family: 'Neuzeit Office' !important;
font-size: 20px !important;
}
- Layout → /theme.liquid → paste code below into the tag of the file:
{{ 'custom.css' | asset_url | stylesheet_tag }}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Best regards.
oh sorry for that issue can you try this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.min.css ->paste below code at the bottom of the file.
.noscript-pagination .pagination-number a, .pagination .pagination-number a
{
font-size: 24px; /* change value as you like */
}
Hi @pjk3635 ,
You can follow the instruction below:
- Go to Online Store->Theme->Edit code
- Asset->/custom.css->paste below code at the bottom of the file:
.pagination li, .pagination li.pagination-number a {
font-family: 'Neuzeit Office' !important;
font-size: 20px !important;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Best regards.
