Change tab color for featured content carousel from white to black

The tab color for the Featured Content Carousel is white. Is it possible to change the tab from white to black. Here is an example where the white tab cannot be seen on the right side of the image.

Parents Reply
  •  ,  is correct that this can be overridden with CSS.

    I would recommend adding an overrides.css file to your community (if one doesn't already exist).

    Then you can use the following to override the slider arrows:

    .content-fragment.featured-content-carousel .slider-container .feature-navigation .navigation.next, .content-fragment.featured-content-carousel .slider-container .feature-navigation:hover .navigation.previous {
        color: rgb(r#,g#,b#) !important;
    }


    Just ensure r#, g# and b# are updated to be appropriate numerical values for the RGB function.

Children