• Resolved alexfuller123

    (@alexfuller123)


    Hello,

    I’m trying to update the border radius of the filter buttons for my grid since they don’t change with the other buttons. How can I do that? For reference, I am using the shortcode version.

    This is what I tried:

    .rt-filter-item-wrap .rt-tax-filter .rt-filter-button-wrap, .term-button-item .rt-filter-button-item {
    border-radius: 5px;
    }

    It doesn’t work and I don’t know what to update to change it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Habib

    (@habibjh)

    It looks like the selector you used is incorrect. Please add the following CSS under Appearance > Customize > Additional CSS:

    .rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item,
    .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap,
    .rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input {
    border-radius: 5px !important;
    }

    Thanks

    Thread Starter alexfuller123

    (@alexfuller123)

    This worked for me, thank you very much!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Changing CSS for Filter Buttons’ is closed to new replies.