How to remove hide slider from post

pls how can i remove the slider title and slider so it won’t be visible as a post

I’m looking for the same thing! I’m uploading different images for the slider but I didn’t understand how to remove the title of the page or post from it.

Hi There,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

.flex-caption h2 {
    display: none;
}

The above code will just remove the post title from slider but if you also want to remove post excerpt from the slider then use the following CSS code.

.flex-caption {
    display: none;
}

Best Regards,
Movin