Lay Theme Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    1. Home
    2. quirin
    Q
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 13
    • Best 1
    • Controversial 0
    • Groups 0

    quirin

    @quirin

    1
    Reputation
    2
    Profile views
    13
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    quirin Unfollow Follow

    Best posts made by quirin

    • RE: missing elements after lay update

      great armin - thx a million!

      posted in Bug Reports
      Q
      quirin

    Latest posts made by quirin

    • RE: backdrop blur on ios

      @arminunruh

      thx - style 2 works! i will stay with this for now.

      style 3 still doesn't also without the custom css

      posted in Bug Reports
      Q
      quirin
    • RE: backdrop blur on ios

      @arminunruh

      hi armin

      this is the link:
      sqk.at

      i used browserstack and several phones of friends to check crosscompatibility and as far as i could see, it works pretty much everywhere, except on iphone ios or chrome!?
      i know u are using the right code and i also tried again with custom css just to make sure. maybe the problem is not on your side...

      and also just to make sure: the problem for me is not the .navbar but the nav.mobile-nav

      posted in Bug Reports
      Q
      quirin
    • RE: backdrop blur on ios

      @brinifein

      well, it should work with -webkit-

      nav.mobile-nav {
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      }

      according to:

      5e4de176-846a-4284-a916-b4a442442737-image.png

      but something is still funny with the backdrop blur in lay, as i need to set the backdrop blur amount for the menu bar to 20px and the for the submenu to 10px to achieve the same visual blur amount.

      i'll keep trying...

      posted in Bug Reports
      Q
      quirin
    • backdrop blur on ios

      Hi Armin

      the mobile backdrop blur is not working for me on IOS. any way to fix it?

      this is how it looks like in chrome/android:
      09e8ff5c-0837-4bd6-aa5b-bc1d0510e178-image.png

      this is on ios:
      93234994-ab33-4cff-a259-4b40d3a24f24-image.png

      these are the settings from the lay theme mobile menu(blur 20px):
      2c2a159e-2789-4462-80e6-0245ec1f534f-image.png

      site url: sqk.at

      posted in Bug Reports
      Q
      quirin
    • RE: missing elements after lay update

      great armin - thx a million!

      posted in Bug Reports
      Q
      quirin
    • RE: missing elements after lay update

      i tried hundreds of ways without success before going back into the very basics

      pls try to:

      • enable fullscreen slider for that page
      • create 2 blank rows(you need at least two rows with set browser height for row height as it is always working for the first one)
      • set browser height for row height
      • create a text element
      • set the text element to align bottom

      result: text element is missing in the preview

      it should not be that way - would be really nice to get it back!
      pls???

      thx,
      Q

      posted in Bug Reports
      Q
      quirin
    • missing elements after lay update

      Hi

      I just updated my lay theme to 5.5.3 and my 'footers' suddenly behave strangely (sorry for not checking from which version i upgraded)

      http://sqk.at/

      • u should see one when you open the page bottom right(black text with white transparent background), but when you scroll down all others are missing.
      • if you scroll all the way down(use right side scrollbar) and scroll up again they reappear.
      • or when you go into a project further down and click back they reappear when you scroll up, but disappear again, when you scroll down.

      technically they are no footers but simple text elements overlaying the fullscreen caroussel elements, which was working for the last 6 month:
      http://laythemeforum.com:4567/topic/3667/text-in-front-of-carousel/25?_=1684081161584

      i do not think it is an overlay issue, but has something to do with the alignment as they show up, if i do not use align bottom. But at the same time i am wondering why it always works for the first row which uses align bottom for the text element as well.

      any ideas how to fix it?

      posted in Bug Reports
      Q
      quirin
    • RE: Individual Carousel speeds and transitions

      @quirin said in Individual Carousel speeds and transitions:

      -webkit-transition: opacity 1500ms ease-out !important;
      -o-transition: opacity 1500ms ease-out !important;
      transition: opacity 1500ms ease-out !important;

      i actually managed to get the effect i wanted by using a transition-delay. So if you only want variable fading speeds with shifted transitions that is all the custom code you need:

      
      .fastcarousel .lay-carousel-slide.transition{
          transition-duration: 1000ms !important;
      }
      
      
      .slowcarousel .lay-carousel-slide.transition{
          transition-duration: 2000ms !important;
      		transition-delay: 1000ms !important;
      }
      

      But i still didn't figure out how to assign the Autoplay Speed individually, which is still inherited from Lay Options for all carousels on my page. Would be interesting to know if there is a possibility!

      Best,
      Q

      posted in Addons
      Q
      quirin
    • Individual Carousel speeds and transitions

      Re: Carousel autoplay speed

      While this works perfectly for me to address different fading durations with assigned classes for my carousel elements:

      .slowcarousel .lay-carousel.transition-fading .lay-carousel-slide.transition {
          -webkit-transition: opacity 3500ms ease-out !important;
          -o-transition: opacity 3500ms ease-out !important;
          transition: opacity 3500ms ease-out !important;
      }
      
      .fastcarousel .lay-carousel.transition-fading .lay-carousel-slide.transition {
          -webkit-transition: opacity 1500ms ease-out !important;
          -o-transition: opacity 1500ms ease-out !important;
          transition: opacity 1500ms ease-out !important;
      }
      

      ...i cannot assign individual speeds for when the slide transitions actually start. Meaning that all carousel transitions always start at the same time from the predefined
      2022-08-20 13_34_32-Carousel Addon.png

      and only the duration of the fading is different.

      Now i also tried what you already proposed to also vary the transition start by:

      
      .slowcarousel .swiper-wrapper {
          transition-duration: 5000ms !important;
      }
      
      .fastcarousel .swiper-wrapper {
          transition-duration: 3000ms !important;
      }
      

      ...without any success.
      Am I somehow missing a value for the overall transition here?

      posted in Addons
      Q
      quirin
    • RE: Text in front of Carousel

      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

      posted in Addons
      Q
      quirin