Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1276758

    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

    • This topic was modified 3 years, 9 months ago by shihanze. Reason: some more thing
    #1276804

    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

    #1277004

    Yes Thanks Done.. How can i change the font color?

    #1277027

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.