Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

Lay Theme Forum

  1. Home
  2. Addons
  3. carousel with different width slides

carousel with different width slides

Scheduled Pinned Locked Moved Addons
15 Posts 2 Posters 1.0k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • E Offline
    E Offline
    Elli 0
    wrote on last edited by arminunruh
    #1

    Hi!

    I want to create a horizontal scrolling slide-show with captions underneath the pictures and the pictures should be aligned on the top not on the button like on this website:

    https://studionatale.it/

    Is there any way I can recreate this with the carousel-addon? Or with css?
    I also don't want the pictures the same hight/width.. (like in the example)

    Thank you so much!

    Regards,
    Elena

    1 Reply Last reply
    0
    • arminunruhA Offline
      arminunruhA Offline
      arminunruh
      Global Moderator
      wrote on last edited by arminunruh
      #2

      Screenshot 2023-03-14 at 18.09.05.png

      use these settings for a carousel

      also use this css:

      [data-swiper-slide-index="1"] .slide-inner{
      height: 350px!important;
      }
      
      [data-swiper-slide-index="2"] .slide-inner{
      height: 400px!important;
      }
      
      [data-swiper-slide-index="3"] .slide-inner{
      height: 450px!important;
      }
      
      [data-swiper-slide-index="4"] .slide-inner{
      height: 550px!important;
      }
      
      [data-swiper-slide-index="5"] .slide-inner{
      height: 500px!important;
      }
      
      .lay-carousel-slide{
          display: flex;
          flex-direction: column;
      }
      .slide-inner{
          order: 2;
      }
      

      also update the carousel addon and go to lay options -> carousel addon
      scroll down and enable "Do less sizing by JavaScript"

      1 Reply Last reply
      0
      • E Offline
        E Offline
        Elli 0
        wrote on last edited by
        #3

        I've two problems now

        Hi!
        Thank you so much!!

        There are just two problems with the carousel:

        While scrolling it the carousel springs randomly and the slide-show doesn't start with the first picture but with the last picture cutted of on the left side.

        Is there a way to fix this?

        Here is my rough test-version:

        https://www.elena-gutierrez.de/xxx-copy/?preview_id=580&preview_nonce=1c722ba9ec&_thumbnail_id=70&preview=true

        Thanks a lot!

        Regards, Elena

        1 Reply Last reply
        0
        • E Offline
          E Offline
          Elli 0
          wrote on last edited by
          #4

          And also I recognized, that you can scroll down..

          1 Reply Last reply
          0
          • E Offline
            E Offline
            Elli 0
            wrote on last edited by
            #5

            here's is the current state.. with the problems described above..

            https://www.elena-gutierrez.de/

            1 Reply Last reply
            0
            • arminunruhA Offline
              arminunruhA Offline
              arminunruh
              Global Moderator
              wrote on last edited by
              #6

              can you send your website address, /wp-admin/ username and password and a link to this topic to info@laytheme.com?

              1 Reply Last reply
              0
              • E Offline
                E Offline
                Elli 0
                wrote on last edited by
                #7

                I figured out, it has something to do with the 'Do less sizing by JavaScript'.
                When I turn it off, the carousel works, but the pictures are stretched to the same width..

                1 Reply Last reply
                0
                • arminunruhA Offline
                  arminunruhA Offline
                  arminunruh
                  Global Moderator
                  wrote on last edited by arminunruh
                  #8

                  :)

                  only one row!
                  right click → browser height row:

                  Screenshot 2023-03-17 at 10.52.16.jpg

                  settings:
                  Screenshot 2023-03-17 at 10.53.27.png

                  css:

                  .lay-carousel-slide img{
                      width: 100%!important;
                      height: auto!important;
                  }
                  
                  .lay-carousel-slide:nth-child(0){
                      width: 30vw!important;
                  }
                  
                  .lay-carousel-slide:nth-child(1){
                      width: 40vw!important;
                  }
                  
                  .lay-carousel-slide:nth-child(2){
                      width: 30vw!important;
                  }
                  
                  .lay-carousel-slide:nth-child(3){
                      width: 35vw!important;
                  }
                  
                  .lay-carousel-slide:nth-child(4){
                      width: 30vw!important;
                  }
                  
                  .lay-carousel-slide, .lay-carousel-slide a{
                      display: flex;
                      flex-direction: column;
                  }
                  .slide-inner{
                      order: 2;
                  }
                  

                  and go to lay options → carousel addon
                  and enable "do less sizing by javascript"

                  1 Reply Last reply
                  0
                  • E Offline
                    E Offline
                    Elli 0
                    wrote on last edited by
                    #9

                    Hi! Now the first picture ist stretched out, the captions are on top and not on the button and the loop doesn't work..

                    1 Reply Last reply
                    0
                    • arminunruhA Offline
                      arminunruhA Offline
                      arminunruh
                      Global Moderator
                      wrote on last edited by
                      #10

                      yea i needed to disable loop

                      u wanted the captions on top

                      remove this css if you dont want that:
                      .lay-carousel-slide, .lay-carousel-slide a{
                      display: flex;
                      flex-direction: column;
                      }
                      .slide-inner{
                      order: 2;
                      }

                      oh yea,
                      add:

                      .lay-carousel-slide:nth-child(0){
                          width: 40vw!important;
                      }
                      
                      1 Reply Last reply
                      0
                      • E Offline
                        E Offline
                        Elli 0
                        wrote on last edited by
                        #11

                        Hi!

                        Now the captions are only on some pics visible and the first slide is cut off and does not scale..

                        Is it possible to put the captions underneath the picture like before, make the pictures different hight (80vh etc.) and loop them? :D

                        1 Reply Last reply
                        0
                        • arminunruhA Offline
                          arminunruhA Offline
                          arminunruh
                          Global Moderator
                          wrote on last edited by arminunruh
                          #12

                          turn on loop

                          delete all of the css

                          insert this css:

                          [data-swiper-slide-index="0"]{
                          width: 35vw!important;
                          }
                          
                          [data-swiper-slide-index="1"]{
                          width: 35vw!important;
                          }
                          
                          [data-swiper-slide-index="2"]{
                          width: 40vw!important;
                          }
                          
                          [data-swiper-slide-index="3"]{
                          width: 30vw!important;
                          }
                          
                          [data-swiper-slide-index="4"]{
                          width: 40vw!important;
                          }
                          
                          [data-swiper-slide-index="5"]{
                          width: 30vw!important;
                          }
                          
                          [data-swiper-slide-index="6"]{
                          width: 35vw!important;
                          }
                          
                          
                          .lay-carousel-slide img{
                              width: 100%!important;
                              height: auto!important;
                          }
                          

                          is it possible to put the captions underneath the picture like before

                          please read my answers more carefully

                          no we cant make them different heights
                          we can only make them different widths, which will change the heights

                          if you have more than 6 slides, add more css.

                          for example if u have 8 slides, add more css like this:

                          [data-swiper-slide-index="7"]{
                          width: 30vw!important;
                          }
                          
                          [data-swiper-slide-index="8"]{
                          width: 35vw!important;
                          }
                          
                          1 Reply Last reply
                          0
                          • E Offline
                            E Offline
                            Elli 0
                            wrote on last edited by
                            #13

                            sorry it's not working

                            1 Reply Last reply
                            0
                            • arminunruhA Offline
                              arminunruhA Offline
                              arminunruh
                              Global Moderator
                              wrote on last edited by
                              #14

                              sorry elena, im in a rush so i made 2 mistakes.

                              also you forgot to activate the "loop" feature, please read my instructions more carefully.

                              this is the correct css. i put the css into your website and now it works.

                              [data-swiper-slide-index="0"]{
                              width: 35vw!important;
                              }
                              
                              [data-swiper-slide-index="1"]{
                              width: 35vw!important;
                              }
                              
                              [data-swiper-slide-index="2"]{
                              width: 40vw!important;
                              }
                              
                              [data-swiper-slide-index="3"]{
                              width: 30vw!important;
                              }
                              
                              [data-swiper-slide-index="4"]{
                              width: 40vw!important;
                              }
                              
                              [data-swiper-slide-index="5"]{
                              width: 30vw!important;
                              }
                              
                              [data-swiper-slide-index="6"]{
                              width: 35vw!important;
                              }
                              
                              .slide-inner{
                                  height: auto!important;
                              }
                              
                              .lay-carousel-slide img{
                                  width: 100%!important;
                                  height: auto!important;
                              }
                              
                              .lay-carousel-slide{
                                  display: flex;
                                  flex-direction: column;
                              }
                              
                              1 Reply Last reply
                              0
                              • E Offline
                                E Offline
                                Elli 0
                                wrote on last edited by
                                #15

                                thank you so much!

                                1 Reply Last reply
                                0
                                Reply
                                • Reply as topic
                                Log in to reply
                                • Oldest to Newest
                                • Newest to Oldest
                                • Most Votes


                                I also code custom websites or custom Lay features.
                                šŸ’æ Email me here: šŸ’æ
                                info@laytheme.com

                                Before you post:
                                1. When using a WordPress Cache plugin, disable it or clear your cache.
                                2. Update Lay Theme and all Lay Theme Addons
                                3. Disable all Plugins
                                4. Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"

                                This often solves issues you might run into

                                When you post:
                                1. Post a link to where the problem is
                                2. Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
                                3. If the problem is difficult to explain, post screenshots / link to a video to explain it
                                Online Users
                                Forgot your key, lost your files, need a previous Lay Theme or Addon version? Go to www.laykeymanager.com
                                laytheme.com
                                • Login

                                • Don't have an account? Register

                                • Login or register to search.
                                • First post
                                  Last post
                                0
                                • Recent
                                • Tags
                                • Popular
                                • Users
                                • Search