There are two types of carousels to use:

Recommended Offersand Carousel Boxes

There are some differences between them, so follow this guide to choose the appropriate classes.

1. Create Html Component to implement Offers Title


<!-- No need to use Class name on strapi Html element -->

<div class="recommended-offers-title">
<div>
  <h2 class="basic-title-md">Najlepiej oceniane hotele na wakacje</h2>
  <p class="p-heading-title">
    Ranking 10 najlepszych hoteli według naszych Klientów
  </p>
</div>
<a
  href="/wyniki-wyszukiwania/wakacje/?supplierObjectIds=PMIBEVE,FUEFURO,CHQEUPH,AYTAMOU,KGSBERO,FUEGRAG,DLMIMPG,BJVASIS,RHOWHIT"
  class="carousel-section-link"
  >Zobacz więcej</a
>
</div>

2. Create Recommended Offers Element in Strapi

Make sure add class recommended-offers-rdyto the Recommended Offers component in Strapi

3. Create Html Component to implement Mobile offers button

<div class="mobile-carousel-offers-button-wrapper">
    <a target="_blank" class="mobile-carousel-offers-button" href="/wyniki-wyszukiwania/?promotion=zima">
        Sprawdź ofertę
    </a>
</div>

 
4. Add Css - Only for Starter.css

/* Carousel start  */

.static-lp-main-wrapper .container .recommended-offers-rdy {
  background-color: var(--main-theme-color) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: var(--gap-3xl) !important;
  padding-right: var(--gap-3xl) !important;
}

.static-lp-main-wrapper .container .carousel-boxes-rdy {
  background-color: var(--main-theme-color) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: var(--gap-3xl) !important;
  padding-right: var(--gap-3xl) !important;
}

.static-lp-main-wrapper .container .recommended-offers-rdy > div {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.static-lp-main-wrapper .container .carousel-boxes-rdy > div {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.recommended-offers-rdy .mt-4 {
  margin-top: 0 !important;
}

.carousel-boxes-rdy .mt-4 {
  margin-top: 0 !important;
}

.recommended-offers-rdy header.mb4 {
  display: none !important ;
}

.carousel-boxes-title,
.recommended-offers-title {
  background-color: white;
  /* adjust padding if you need  */
  padding: clamp(1.88rem, calc(1.66rem + 0.96vw), 2.5rem)
    clamp(0rem, calc(1.68rem + -1.92vw), 1.25rem) 0
    clamp(0rem, calc(1.68rem + -1.92vw), 1.25rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.carousel-boxes-title {
  margin-bottom: 24px;
}

.carousel-boxes-title h2 span {
  /* depends on fency title is on left or right change it */
  margin-left: 8px;
}

.recommended-offers-title h2 span {
  /* depends on fency title is on left or right change it */
  margin-left: 8px;
}

.carousel-section-link {
  display: none;
}

.carousel-boxes-rdy div > div > div > div > div > div {
  height: 86px !important;
  background-color: white !important;
  display: flex;
  align-items: center;
}

.mobile-carousel-offers-button {
  width: 100%;
  height: 45px;
  background-color: transparent;
  display: grid;
  place-items: center;
  max-width: 360px;
  min-width: 260px;
  border-radius: 50px;
  color: var(--basic-font-color);
  font-family: var(--basic-font-family);
  z-index: 1;
  font-weight: 700;
  border: 2px solid var(--basic-font-color);
  text-decoration: none;
  margin: 30px 0;
}

/* Carousel end  */

/* carousel start max-width:1000px  */

@media (max-width: 1000px) {
    .mobile-carousel-offers-button-wrapper {
      display: grid;
      place-items: center;
      padding: 0 var(--gap-3xl);
    }
  
    .mobile-d-none {
      display: none;
    }
  }

/* carousel end max-width:1000px  */


  /* carousel start min-width:1000px  */
  
  @media (min-width: 1000px) {

  
    /* carousel start  */
  
    .mobile-carousel-offers-button-wrapper {
      display: none;
    }
  
    .carousel-section-link {
      text-align: right;
      font-family: var(--basic-font-family);
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 17px; /* 106.25% */
      text-decoration-line: underline;
      display: inline-block;
      padding-bottom: 5px;
      color: var(--basic-font-color);
    }
  
    .static-lp-main-wrapper .container .recommended-offers-rdy {
      padding-bottom: 50px !important;
    }
    .static-lp-main-wrapper .container .carousel-boxes-rdy {
      padding-bottom: 50px !important;
    }
}
  /* carousel end min-width:1000px  */