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. Text in front of Carousel

Text in front of Carousel

Scheduled Pinned Locked Moved Addons
carousel
41 Posts 16 Posters 3.1k 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.
  • A Offline
    A Offline
    aaalex
    wrote on last edited by
    #13

    Hello! I'd love to know how I can place text in front of a picture-carousel with CSS.

    Thanks! :)

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

      Dear @aaalex
      you can offset elements in the gridder that they move on top of each other.
      You can also use CUSTOM CSS and z-index.
      Best!
      Marius

      www.mariusjopen.world

      T 1 Reply Last reply
      0
      • T Offline
        T Offline
        TE
        wrote on last edited by
        #15

        hi @mariusjopen could you please advice on how to apply the CUSTOM CSS in this case?

        Best

        T

        1 Reply Last reply
        0
        • mariusjopenM mariusjopen

          Dear @aaalex
          you can offset elements in the gridder that they move on top of each other.
          You can also use CUSTOM CSS and z-index.
          Best!
          Marius

          T Offline
          T Offline
          TE
          wrote on last edited by
          #16

          @mariusjopen Hi Again,

          I also tried the offset option however then I have still a scrollable chunk under the carousel which I dont want to have. How to tackle this?

          Thx

          T

          1 Reply Last reply
          0
          • RichardR Offline
            RichardR Offline
            Richard
            Global Moderator
            wrote on last edited by
            #17

            Dear @TE

            The goal is to have a carousel with an area of text that sits over the top? :)

            If so, i have created a simple example to get you in the right direction, i hope i can help.

            Let's create a carousel with a text block below it in the Gridder:

            Screen Shot 2020-11-13 at 5.20.49 PM.png

            Right click the text element to give it a Custom Class or ID - in my case i gave it a Class called "Special"

            Screen Shot 2020-09-14 at 2.50.29 PM.png

            Then we can target this Text element with Custom CSS using this 'special'

            In 'Lay Options - Custom CSS & HTML" We can add some Custom CSS to the Area at the top of the page:

            Screen Shot 2020-09-14 at 2.51.54 PM.png

            Adding some code like this:

            .special{
                margin-top: -140vh;
                z-index: 99;
            }
            

            And start to play around with some Basic CSS to suit your needs!

            Also something to help you:
            https://laytheme.com/documentation.html#custom-css-styling

            Have a wonderful day and Good Luck! all the basic CSS you need is just a google away :)

            Best
            Richard

            1 Reply Last reply
            0
            • T Offline
              T Offline
              TE
              wrote on last edited by
              #18

              Dear Richard

              Thanks for the help. I have tried your workaround and it did works however it didn't solve the problem of the blank space left below the carousel (where I have inserted the text block in the editor).

              1 Reply Last reply
              0
              • RichardR Offline
                RichardR Offline
                Richard
                Global Moderator
                wrote on last edited by
                #19

                Dear @TE

                Sorry for my answer, it didn't provide the correct solution.

                This code below should work without adding any extra length to your page:

                .special {
                    transform: translateY(-40vh);
                    z-index: 99;
                }
                

                Let me know how you go! :)
                Have a wonderful day & thank you for using Lay Theme

                T 1 Reply Last reply
                0
                • RichardR Richard

                  Dear @TE

                  Sorry for my answer, it didn't provide the correct solution.

                  This code below should work without adding any extra length to your page:

                  .special {
                      transform: translateY(-40vh);
                      z-index: 99;
                  }
                  

                  Let me know how you go! :)
                  Have a wonderful day & thank you for using Lay Theme

                  T Offline
                  T Offline
                  TE
                  wrote on last edited by
                  #20

                  @Richard-K Thanks for the help. However this didnt work and resulted in the text box not being translated to the top nor removing the gap.

                  Are you certain this is the right fix?

                  Note the I have written custom css to make the carousel full screen. Perhaps this interferes with the recent css code you wrote me?
                  here is my current custom css (i renamed 'special' as 'text_overlay'):

                  *img.carousel-lazy-img.h100.lazyloaded {
                  height: 100vh;
                  width: 100vw;
                  object-fit: cover;
                  }

                  .carousel-full {
                  height: 100vh;
                  }

                  .carousel-full .lay-carousel-wrap {
                  height: 100% !important;
                  }

                  .carousel-full img.h100 {
                  object-fit: cover;
                  height: 100vh !important;
                  width: 100%;
                  }

                  .text_overlay{
                  margin-top: -120vh;
                  z-index: 99;
                  }*

                  1 Reply Last reply
                  0
                  • RichardR Offline
                    RichardR Offline
                    Richard
                    Global Moderator
                    wrote on last edited by Richard
                    #21

                    Dear @TE

                    Thanks for the update!
                    Apologies for my delay, are you able to post a link to your website and then i can make sure it fits :)

                    *img.carousel-lazy-img.h100.lazyloaded {
                    height: 100vh;
                    width: 100vw;
                    object-fit: cover;
                    }
                    
                    .carousel-full {
                    height: 100vh;
                    }
                    
                    .carousel-full .lay-carousel-wrap {
                    height: 100% !important;
                    }
                    
                    .carousel-full img.h100 {
                    object-fit: cover;
                    height: 100vh !important;
                    width: 100%;
                    }
                    
                    .text_overlay{
                    margin-top: -120vh;
                    z-index: 99;
                    }*
                    
                    

                    Best wishes and a great day
                    Richard

                    1 Reply Last reply
                    0
                    • M Offline
                      M Offline
                      Mariannep
                      wrote on last edited by
                      #22

                      Hello everyone !
                      I find myself in the same situation as @TE for a website I'm working on : I would like to have a text in front of my full-page carousel. I have managed to put the text on top following your recommandations, but I cant find a way to get rid of the blank space below the carousel either.
                      By any chance, did anyone here manage to solve this problem?

                      Thanks in advance !

                      1 Reply Last reply
                      0
                      • RichardR Offline
                        RichardR Offline
                        Richard
                        Global Moderator
                        wrote on last edited by
                        #23

                        Dear @Mariannep

                        Understood :)
                        Could you post a link to your website and we can better inspect that!

                        Best
                        Richard

                        M 1 Reply Last reply
                        0
                        • RichardR Richard

                          Dear @Mariannep

                          Understood :)
                          Could you post a link to your website and we can better inspect that!

                          Best
                          Richard

                          M Offline
                          M Offline
                          Mariannep
                          wrote on last edited by
                          #24

                          Hello @Richard-K ,
                          thank you for replying so quickly!
                          This is the website I'm currently working on:
                          http://gautyqi.cluster030.hosting.ovh.net/

                          On a side note :
                          I was thinking that maybe it would be better to use the "full-screen slider addon" instead of the carousel addon. But I found a piece of CSS/HTML that allows me to have the logo in white only on that page, and I didnt dare to disturb what I had already achieved.
                          In the row below the carousel row, I have this piece of code:

                          <!doctype html>
                          <style>
                          .sitetitle img {
                          content: url(http://gautyqi.cluster030.hosting.ovh.net/wp-content/uploads/2020/12/OUD-LOGO-BLANC.png);
                          }
                          </style>

                          This may be part of the problem?

                          Thanks a lot,

                          Marianne

                          1 Reply Last reply
                          0
                          • RichardR Offline
                            RichardR Offline
                            Richard
                            Global Moderator
                            wrote on last edited by
                            #25

                            Hi Marianne @Mariannep

                            Sorry if i was delayed - have you removed the text from your main carousel since yesterday?

                            Best
                            Richard

                            M 2 Replies Last reply
                            0
                            • J Offline
                              J Offline
                              jacobpihlanen
                              wrote on last edited by jacobpihlanen
                              #26

                              I have a question regarding this subject. I managed somehow to do exactly this, to put a text block on top of a fullscreen carousel, without any css. I tried to do it again on another project, but couldn´t manage to repeat the process.

                              I just drag and dropped text block and resized it a bit, and it seems to work fine.

                              Will this be a problem for me in the future? Or can I live like this? :)
                              I can just duplicate the project to have the same solution all around.

                              1 Reply Last reply
                              0
                              • RichardR Offline
                                RichardR Offline
                                Richard
                                Global Moderator
                                wrote on last edited by Richard
                                #27

                                Dear @jacobpihlanen

                                interesting!
                                Could you post a screenshot of your gridder with the working version? :)

                                Best wishes and Seasons greetings
                                Richard

                                1 Reply Last reply
                                0
                                • RichardR Richard

                                  Hi Marianne @Mariannep

                                  Sorry if i was delayed - have you removed the text from your main carousel since yesterday?

                                  Best
                                  Richard

                                  M Offline
                                  M Offline
                                  Mariannep
                                  wrote on last edited by
                                  #28

                                  @Richard-K Hello Richard,
                                  So sorry for replying so late! I missed your message before going on vacation.
                                  I did remove the text to be able to show a "cleaner" preview to my client, but I am still trying to find a way to make it work.
                                  I added the text back - and the white row underneath is back too:
                                  http://gautyqi.cluster030.hosting.ovh.net/

                                  I found a way to get rid of the little piece of html for the white version of the logo that was still underneath the main row.

                                  Thanks again, best,
                                  Marianne

                                  1 Reply Last reply
                                  0
                                  • RichardR Richard

                                    Hi Marianne @Mariannep

                                    Sorry if i was delayed - have you removed the text from your main carousel since yesterday?

                                    Best
                                    Richard

                                    M Offline
                                    M Offline
                                    Mariannep
                                    wrote on last edited by
                                    #29

                                    @Richard-K Hi Richard, it's me again!

                                    I found a solution by browsing the forum.
                                    I added a class "hide-row" to the row where I put my text, and in the CSS I wrote :

                                    .hide-row {
                                     height: 0px;
                                    }
                                    

                                    It works pretty well, however it would be even better if there was a way to make sure the text is always centered in the browser height - right now it's not the case because it's positioned with the offset measures.
                                    If anyone has found a solution, it would be great to read about it! :)

                                    1 Reply Last reply
                                    0
                                    • RichardR Offline
                                      RichardR Offline
                                      Richard
                                      Global Moderator
                                      wrote on last edited by
                                      #30

                                      Dear @Mariannep

                                      Just checking in - Website looks beautiful :)

                                      1 Reply Last reply
                                      0
                                      • J Offline
                                        J Offline
                                        jeff
                                        wrote on last edited by jeff
                                        #31

                                        Hi everyone,

                                        I've read all the thread and tried everything css line and unfortunately it's not working for me haha.

                                        You can see on the website that I'm working on, there is a title "Geoffrey Pauchard" (class : name) which is fixed and the carousel below (class : carousel).
                                        When I'm scrolling down, the title is going behind the carousel element. I would like to have the title in front of the carousel. I've tried the z-index but it's not working.

                                        There is my css code for it :

                                        .name {position: fixed}
                                        .name {z-index: 99}
                                        
                                        .carousel {z-index: 1}
                                        

                                        website link: http://latelierjungle.com/geoffrey-pauchard

                                        Let me know if there is a way to make it work.
                                        Thank you in advance.

                                        Jeff

                                        1 Reply Last reply
                                        0
                                        • Q Offline
                                          Q Offline
                                          quirin
                                          wrote on last edited by
                                          #32

                                          if you want a fullscreen carousel with text on top, it works right out of the box:

                                          • make a new row
                                          • use browser height for row height
                                          • create a text in the row
                                          • create a carousel in the same row, check fixed height: 100vh and activate fill slides
                                          • use the align options and offset values to place the text where you want it

                                          hope this helps!
                                          Q

                                          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