• Resolved sfatimahh

    (@sfatimahh)


    Hi,

    For the filter type Multiple Selection, filter style Tags. The font size and color is too small and light color. Too hard to see. I tried to change in customize, but only other text with different filter style gets change.

    Can’t seem to change it from customizer. Can please help so that it will be easy to see.

    • This topic was modified 1 year, 9 months ago by sfatimahh.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author annastaa

    (@annastaa)

    Hello Sfatimahh,

    There is no dedicated Customizer section for the tags style. You can only change the tags styling parameters with the help of the custom CSS rules, for example like so:

    .awf-style-tags .awf-filter-container input[type='checkbox'] + label { font-size: 1em; color: #666666; }

    The rule below will help to make the border color brighter as well:

    .awf-filters-container.awf-style-tags li.awf-filter-container { border: 2px solid #666666; }

    You can add the above pieces of code in annasta Filters > Style settings > Custom CSS, to test it and adjust to your needs.

    Thread Starter sfatimahh

    (@sfatimahh)

    Thank you!

    Thread Starter sfatimahh

    (@sfatimahh)

    One more that I need to customize is when one of the tags is filtered, I need the color to be in orange color. How do i do that?

    Plugin Author annastaa

    (@annastaa)

    It’s my pleasure to help?Sfatimahh,

    To adjust the background and border of the active tag, try the following selector:

    .awf-filters-container.awf-style-tags li.awf-filter-container.awf-active {
        background: #da4714;
        border-color: #333333;
    }

    And this one should work for the color of the active tag label:

    .awf-style-tags .awf-filter-container.awf-active label { color: #ffffff; }
    Plugin Author annastaa

    (@annastaa)

    Hello?Sfatimahh,

    I will go ahead and close this inactive thread, please open a new one if you have any further questions!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Can’t change font size’ is closed to new replies.