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. Bug Reports
  3. Some images w/ y-offset have a strange overlap/cutoff

Some images w/ y-offset have a strange overlap/cutoff

Scheduled Pinned Locked Moved Bug Reports
17 Posts 4 Posters 871 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.
  • RichardR Offline
    RichardR Offline
    Richard
    Global Moderator
    wrote on last edited by Richard
    #3

    Dear @edgrbnz

    Thank you so much for such a good Bug Report! πŸ›

    • Bug Present in Chrome & Safari (Lay Theme version 4.1.5, 4.1.6)
    • Last element with negative Y-Offset applied
    • Element is cut off (confirmed when removing Offset):

    Screen Shot 2022-02-08 at 11.04.24 AM.png

    Relates to Code:

    body.lay-transition-elements-on-scroll .row:last-child {
        overflow: hidden;
    }
    
    • Bug Present EXAMPLE-1 , EXAMPLE-2
    • Also recreated on Test Site

    Have forwarded to Armin βœ…


    Thanks @edgrbnz & have a wonderful day πŸ–
    Richard
    1 Reply Last reply
    1
    • edgrbnzE Offline
      edgrbnzE Offline
      edgrbnz
      wrote on last edited by
      #4

      Hey @Richard,

      any news on this?

      ✦ ✦ ✦

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

        Have re-forwarded it @edgrbnz πŸ‘

        1 Reply Last reply
        1
        • edgrbnzE Offline
          edgrbnzE Offline
          edgrbnz
          wrote on last edited by
          #6

          Thank you @Richard, hope there’ll be a fix soon πŸŽ‰

          ✦ ✦ ✦

          1 Reply Last reply
          1
          • edgrbnzE Offline
            edgrbnzE Offline
            edgrbnz
            wrote on last edited by
            #7

            Hey @Richard & @arminunruh any news?

            ✦ ✦ ✦

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

              Dear @edgrbnz

              Still no news sorry, lets come to a solution in the meantime then πŸ‘

              This is affecting the last child in the Gridder. This custom CSS with change the overflow:hidden. I have added translateY to move it down a bit if needed for your design.

              Here on the "friends-act-like-this-over-here" work page:
              Screen Shot 2022-03-20 at 12.06.06 PM.png

              I didnt need to move the element down because you had room above within the design:

              body.lay-transition-elements-on-scroll .row:last-child {
                  overflow: initial !important;
              }
              

              If you do need to push an element you can use the code below to push it down (for example 70px):

              body.lay-transition-elements-on-scroll .row:last-child {
                  overflow: initial !important;
                  transform: translateY(70px);
              }
              

              Im sure there are different setups for different pages so let me know how i can help if you find the above code not working as per design. Once again sorry for no reply, i will re-forward. βœ…

              Talk soon & let me know if i can help further 🌝

              Sincerely
              Richard

              1 Reply Last reply
              1
              • edgrbnzE Offline
                edgrbnzE Offline
                edgrbnz
                wrote on last edited by edgrbnz
                #9

                Dear @Richard,
                thanks a lot!!

                body.lay-transition-elements-on-scroll .row:last-child {
                    overflow: initial !important;
                }
                

                πŸ‘† Did the trick for now.
                Please let me know as soon as there is an official fix / update for that.

                Cheers! πŸ’

                ✦ ✦ ✦

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

                  Thanks @edgrbnz will do! πŸ‘

                  1 Reply Last reply
                  0
                  • Q Offline
                    Q Offline
                    qua7
                    wrote on last edited by
                    #11

                    Hi @richard & @arminunruh,

                    just discovered that the two last images in one project were cut off at the top as well. The strange thing is that this only happened in one project.

                    body.lay-transition-elements-on-scroll .row:last-child {
                    overflow: initial !important;}

                    did the trick for me, too.

                    Once there is a fix for this: do I then have to remove that custom CSS?

                    Thanks!

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

                      Dear @qua7

                      Thanks for your update and adding to the thread πŸ‘
                      Yes, once the Bug is fixed properly the Custom CSS can be removed.


                      Have a wonderful weekend @qua7
                      Richard
                      1 Reply Last reply
                      0
                      • arminunruhA Offline
                        arminunruhA Offline
                        arminunruh
                        Global Moderator
                        wrote on last edited by
                        #13

                        hey!

                        i had to do overflow hidden on the last row because otherwise this bug happened:
                        http://laythemeforum.com:4567/topic/6980/full-screen-row-getting-smaller-on-scroll

                        the overflow is only hidden when you use "animate elements on scroll" and you use a y-offset in the last row.

                        since this is kind of a rare case and im not sure how else to fix the bug that i mentioned in the first sentence, i will leave it as it is.

                        1 Reply Last reply
                        1
                        • edgrbnzE Offline
                          edgrbnzE Offline
                          edgrbnz
                          wrote on last edited by edgrbnz
                          #14

                          Alright thanks @arminunruh I had this issue on another site I’m currently working on. Will there be a fix somewhen in the forseeable future?

                          ✦ ✦ ✦

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

                            hey man,

                            im gonna code the fix now :O
                            will be included with the next update

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

                              should be fixed if you update now

                              1 Reply Last reply
                              0
                              • edgrbnzE Offline
                                edgrbnzE Offline
                                edgrbnz
                                wrote on last edited by
                                #17

                                Thank you @arminunruh πŸ™

                                ✦ ✦ ✦

                                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