Tagged: page number
HI,
I want change the
page numbers font size little big & and bold.
also in the shop page i want make the price filter font and dragging button font bog and bold
Hi shihanze,
I see, try adding this CSS code in Quick CSS, located in Enfold > General Styling:
.pagination .pagination-meta {
font-size: 13px;
font-weight: bold;
}
For the price filter text:
.price_slider_wrapper .price_label {
font-size: 15px;
font-weight: bold;
}
For the price filter button text:
#top .widget_price_filter .button {
font-size: 15px;
font-weight: bold;
}
Just adjust the font sizes.
Hope it helps.
Best regards,
Nikko
Yes Thanks Done.. How can i change the font color?
Hi shihanze,
You can add color attribute to text, for example:
.pagination .pagination-meta {
font-size: 13px;
font-weight: bold;
}
would become:
.pagination .pagination-meta {
color: blue;
font-size: 13px;
font-weight: bold;
}
For buttons, you can change the background color, so from:
#top .widget_price_filter .button {
font-size: 15px;
font-weight: bold;
}
to:
#top .widget_price_filter .button {
background-color: green;
font-size: 15px;
font-weight: bold;
}
Best regards,
Nikko