XF 1.5 Hide wrapper or image carousel container

see the screenshot:
2016-10-29_10-46-07.webp

Add these codes based on your needs to EXTRA.css:

To hide 1:
Code:
.xmgCarouselContainer .secondaryContent h3 {
    display: none !important;
}

To hide 2:
Code:
.xmgCarouselContainer .secondaryContent h3 {
    border-bottom: 0px !important;
}

To hide 3:
Code:
.section.xmgCarouselContainer.ltr .secondaryContent{
    border-bottom: 0px !important;
}

To hide 4:
Code:
.amsTileView.dropdown .primaryContent {
    border-bottom: 0px !important;
}
 
Top Bottom