Simple Elementor Media Carousel With Text Captions !

Simple Elementor Media Carousel With Text Captions !

Element.How also offers premium tutorials! Check them here:

Table of Contents

How to add elementor media carousel text captions using CSS only! No plugins needed!

Here is what we are going to create:

Please log in to access this template. It's free! Login here

 

Let's get started!

First, add Captions to every 'Slides' in the Elementor Media Carousel

Simple Elementor Media Carousel With Text Captions ! 1

Then, set overlay to 'Text' and caption to 'Caption'

Simple Elementor Media Carousel With Text Captions ! 2

Finally, add this CSS to enable the Elementor media carousel text captions!

Add it under Advanced > Custom CSS for the media carousel element.

<script> 
/* Please login to get the code 
 * The code will be for the Simple Elementor Media Carousel With Text Captions ! tutorial 
 * Found at this URL https://element.how/elementor-media-carousel-with-text/ 
 */ 
</script>

That's all! Enjoy your Elementor Media Carousel Captions!

Watch the video for more info! Let me know if everything works for you!

Element.how also provides premium tutorials showing awesome advanced designs, check them out here.

Looking for something else? Search across 2737 Elements right here:

Checkout the Elementor Addon Finder directly

32 Responses

    1. Hey Dyanna! Yes this is possible. You will need to use HTML in the 'caption' field. Such as the following :

      <div style='display:flex;flex-direction:row;'>
      <strong>Kayak</strong>
      <div>Kayaking the river Laurent</div></div>
      

      Then, to accomodate for the 2 or 3 lines of text, you will need greater height, top and padding-bottom values in the CSS. Here is my full CSS now :

      body .elementor-section .elementor-carousel-image-overlay {
      background-color: transparent;
      color: black; /* Change the color here to change the color of the caption */
      font-size: 23px; /* Change the font size here to change the size of the caption */
      height:48px;
      top:118%;/* Slightly increase or decrease this value to position the caption */
      opacity: 1!important;
      transform:none!important;
      }

      body .elementor-section .swiper-slide {
      overflow: visible;
      }

      body .elementor-section .swiper-container {
      padding-bottom: 140px;
      }

      1. It works like a charm, thank you Maxime!
        I posted the same question in the Elementor forum and left your solution there.

        Best regards, Otto

  1. There is a way to make the text selectable and dont go to the media?
    Also for the html text in captions im using " " At the end I need to put and when I want to finish with the color I put
    Not elegant but do the job

  2. My client wants more than one of these on the same page. How do I limit the css to ONLY change on one of the carousels instead of all of them on the same page? I know it's got to be super easy... but I'm stumped (overthinking?)...

    1. Give your media carousel the class name 'custom-carousel' , then add this code instead of the one above:

      body .elementor-section .custom-carousel .elementor-carousel-image-overlay {
      background-color: transparent;
          color: black; /* Change the color here to change the color of the caption */
          font-size: 23px; /* Change the font size here to change the size of the caption */
          height:30px;
          top:107%;/* Slightly increase or decrease this value to position the caption */
          opacity: 1!important;
          transform:none!important;
      }
      
      body .elementor-section .custom-carousel .swiper-slide {
          overflow: visible;
      }
      
      body .elementor-section .custom-carousel .swiper-container {
          padding-bottom: 90px;
      }
      
  3. I would keep the border radius on images (30px) but this piece of code bellow transform the border radius on 0px because of the swiper-slide class instead of carrousel media. How can I do? Thanks

    body .elementor-section .swiper-slide {
overflow: visible;
}

  4. Hi,
    I am using Elementor Free, there is no "Overlay" option. Is there any way to put a comment inside carousel's images?
    Thanks, Tin

    1. Hey Tin!

      Easiest is really just to get Elementor Pro. You could make it work with free, but it will cost you as much or much in custom work, than Pro.

  5. Plzz Help! By applying the same step my captions are over-written I mean all slides' captions are showing at a time and making a mess.

  6. Is there any way to activate overlay with the Skin "Slideshow" in Media Carousel? I was only able to activate text-overlay for "Carousel" and "Coverflow".

  7. Thank you for this - works great!! I would like to make a change, but am not sure if it is possible. I am using default coverflow (3 slides show at a time). I would only like the text to show for the middle slide (not all of them). Is this possible?

    1. Greetings!

      Yes it's possible. Add this CSS:

      selector .elementor-carousel-image-overlay {
      opacity: 0 !important;
      transition: opacity 0.3s;
      }
      
      selector .swiper-slide-active .elementor-carousel-image-overlay {
      opacity: 1 !important;
      }
      

      Cheers!

      1. Fantastic!! Thanks!!

        Media Carousel considers the left most slide active (I wanted the center one). So I just changed your code to use .swiper-slide-next instead of .swiper-slide-active and it is perfect.

      2. You are right indeed! That's what happens when I try to code something in the dark... hehe

  8. I have another question for you, Maxime, if you don't mind. The CSS code you gave works fantastic!

    I am experiencing a different irritating issue. This issue has nothing to do with the custom CSS code. Removing the code has no affect.

    I am using Media Carousel, showing 3 slides at a time, coverflow setting. So it gives the 3D look as the slides swipe. Image Fit is set to contain. Some images are horizontal, some vertical.

    What is driving me crazy is that on the outer slides with the 3D effect, there is a shade gradient. My background is blue, so I can see the black gradient. It looks terrible.

    I have checked the background color and overlay background color for the carousel. Both are set to transparent. I am not seeing where the black gradient is set or where it can be changed.

    Do you have any suggestions? Or any website/documentation I can read to find the answer? TIA

    1. Greetings!

      That's a built in feature from SwiperJS, and usually it works alright, however here Elementor gave the "contain" option and with it, it really doesn't work.

      Add this CSS to remove the shadows:

      /* remove the shadows if using coverflow, optional */
      selector .swiper-slide-shadow-left,
      selector .swiper-slide-shadow-right {
          display:none;
      }
      

      Cheers!

Leave a Reply