You need to sign in to do that
Don't have an account?

Removing white space (content space) from lightning crousel
Hi Friends,
I am implementing image crousel in lightning component but do not want slds-carousel__content (which displays description and title etc) I want to show the full image on crousel.
Is there any way that i can remove the white space from the bottom of the image?
Thanks
I am implementing image crousel in lightning component but do not want slds-carousel__content (which displays description and title etc) I want to show the full image on crousel.
Is there any way that i can remove the white space from the bottom of the image?
Thanks
Hi Marcio,
Probably you have solved your issue till now but I am posting the answer so anyone else face the same issue can get help from this.
So, to remove white space from Carousel in aura you just need to use the display property in css file.
.THIS .content-container {
display: none;
}
It will hide the content container.
Thanks.
Do you know how to remove this content container in lwc, Thanks.
renderedCallback() {
const style = document.createElement('style');
style.innerText = `.slds-carousel__content {
display: none;
}`;
this.template.querySelector('lightning-carousel').appendChild(style);
}