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

Q

quirin

@quirin
About
Posts
17
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • burger menu disappears on refresh
    Q quirin

    great armin - thank you so much!

    General Discussion

  • burger menu disappears on refresh
    Q quirin

    i use polylang

    and i do use the overlay settings for the menu:
    2024-07-07 16_57_07-burger menu disappears on refresh _ Lay Theme Forum.jpg

    General Discussion

  • burger menu disappears on refresh
    Q quirin

    pls have a look here:

    http://salonammarkt.poietik.com/salon-am-markt/

    • switch the language on the top left to "en"
    • the burger menu still works fine
    • click refresh page
    • the burger menu disappears(both chrome and firefox)

    my guess is that smth. goes wrong with this code i am using for the overlay page to switch between the english and german menu:

    .menu_en{
    display: none;
    }
    .slug-salon-am-markt-en .menu_en{
    display: block;
    }

    .menu_de{
    display: none;
    }
    .slug-salon-am-markt .menu_de{
    display: block;
    }

    but i do not understand why it works in the first place and causes problems on refresh. any ideas?

    thx,
    Q

    General Discussion

  • Different overlays for specific pages
    Q quirin

    I successfully used this method http://laythemeforum.com:4567/topic/9592/show-an-overlay-menu-element-only-in-homepage
    to create different overlay menus for two languages

    General Discussion

  • backdrop blur on ios
    Q quirin

    @arminunruh

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

    style 3 still doesn't also without the custom css

    Bug Reports

  • backdrop blur on ios
    Q quirin

    @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

    Bug Reports

  • backdrop blur on ios
    Q quirin

    @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...

    Bug Reports

  • backdrop blur on ios
    Q quirin

    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

    Bug Reports

  • missing elements after lay update
    Q quirin

    great armin - thx a million!

    Bug Reports

  • missing elements after lay update
    Q quirin

    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

    Bug Reports

  • missing elements after lay update
    Q quirin

    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?

    Bug Reports

  • Individual Carousel speeds and transitions
    Q quirin

    @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

    Addons

  • Individual Carousel speeds and transitions
    Q quirin

    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?

    Addons

  • Text in front of Carousel
    Q quirin

    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

    Addons carousel

  • change active menu item while scrolling the page
    Q quirin

    is it possible to change the the active menu item when i scroll down?

    here is the site
    madamemore.com

    so when i scroll down over the row with the #architecture id my url would automatically change to madamemore.com/#architecture?

    or otherwise - if i click on one of the projects and in there click back i would like to arrive again in the section(architecture or design) where i came from.

    thx for any advice,
    Q

    General Discussion

  • fullscreen slider in one page layout is not centering content
    Q quirin

    but it also happens with images. the fullscreen slider centers first and with the next click or scroll it jumps to the top.

    General Discussion

  • fullscreen slider in one page layout is not centering content
    Q quirin

    Hi lay community

    How do i setup the anchor id's properly to get my content centered vertical again, when i wanna use the fullscreen slider addon?

    See madamemore.com

    Best,
    Quirin

    General Discussion
  • Login

  • Don't have an account? Register

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