• Resolved memoryfun3

    (@memoryfun3)


    Hello, thank you for developing such an excellent plugin. I’ve encountered two minor issues:

    When the post count exceeds 100, the number goes beyond the parentheses.

    When changing the search button text from English to Chinese, the text becomes cramped.

    Please refer to the linked image for details.

    https://www.flickr.com/photos/memoryfun3/54161675615/in/dateposted/

    I would appreciate your guidance on how to modify this. Thank you very much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author YMC

    (@wssoffice21)

    Hi!
    You can customize these filter elements using your CSS styles. It will not be difficult to make the silization of each element in the design you need.

    • This reply was modified 7 months ago by YMC.
    • This reply was modified 7 months ago by YMC.
    Thread Starter memoryfun3

    (@memoryfun3)

    I have resolved the counter display issue using the following CSS.

    .dropdown-filter .menu-passive__item .count {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
    font-size: 14px;
    background-color: transparent;
    white-space: nowrap;
    min-width: 20px;
    width: auto;
    }

    .dropdown-filter .menu-passive__item .count::before {
    content: "(";
    margin-right: 5px;
    }

    .dropdown-filter .menu-passive__item .count::after {
    content: ")";
    margin-left: 5px;
    }

    .dropdown-filter .menu-passive__item {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    width: auto;
    }

    .dropdown-filter .menu-passive__item a .count {
    min-width: 30px;
    text-align: center;
    margin-right: 3px;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘posts count and search button text’ is closed to new replies.