Featured Content Carousel Title Size

How can you reduce the size of the title font in the featured carousel widget as it is much bigger than the description?  We are currently using it in a skinny column

Parents
  • Former Member
    0 Former Member

    You can use Widget Studio to add some custom css to the widget.  Here is an example of some code that might work for you.

    .right-sidebar {
        .content-fragment.featured-content-carousel .slider-container .slider .content-list.content>.content-item>.content .name {
            font-size: 14px;
        }
        .content-fragment.featured-content-carousel .slider-container {
    		height: 155px !important;
        }
    }

Reply
  • Former Member
    0 Former Member

    You can use Widget Studio to add some custom css to the widget.  Here is an example of some code that might work for you.

    .right-sidebar {
        .content-fragment.featured-content-carousel .slider-container .slider .content-list.content>.content-item>.content .name {
            font-size: 14px;
        }
        .content-fragment.featured-content-carousel .slider-container {
    		height: 155px !important;
        }
    }

Children