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

M

melo_lenosier

@melo_lenosier
About
Posts
36
Topics
13
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Limit project index to a number of recents?
    M melo_lenosier
    Mar 19, 2025, 6:33 AM

    Hello @arminunruh
    is there any update regarding this feature?
    I made a website in the past that now has this problem. The client wrote so many articles (projects) that now the page is a super long list of project thumbnails. It would be cool to allow to load a max number of pj-thumbnails per page and then the classic "Prev or Next" at the bottom of the page for checking the older or newer ones.

    Thank you!

    General Discussion

  • fullscreen slider on mobile weird footer margin space!
    M melo_lenosier
    Mar 11, 2023, 4:17 PM

    @melo_lenosier said in fullscreen slider on mobile weird footer margin space!:

    https://www.giorgiamocilnik.com/about/

    Sorry, not the About page, but this one:
    https://www.giorgiamocilnik.com/writings/

    Bug Reports

  • fullscreen slider on mobile weird footer margin space!
    M melo_lenosier
    Mar 11, 2023, 4:15 PM

    @arminunruh

    Sorry for late reply.
    Here the Cover effect:
    https://www.giorgiamocilnik.com/instantanee-instabili/

    and here the fullscreen slider plugin:
    https://www.giorgiamocilnik.com/about/

    Figure it out this would be really helfull!
    Thanks,
    I send you pass and username via email!

    Bug Reports

  • Pictures disappear with Fullscreen Slider Addon!
    M melo_lenosier
    Jan 20, 2023, 4:06 PM

    @arminunruh

    Same for me.

    DEKSTOP:
    It worked with fading effects at the beginning, but now it stopped. When fade effect is on, now there is no content in the slides.

    MOBILE:
    Fullscreenslider works on both slide and fade effect, but each slide is never 100vh! There is a weird margin at the bottom connected to some Footer CSS.

    Here the website I am working on:
    https://www.davidebernardis.com/

    It would be awesome if you could solve this asap!
    Thanks a lot Armin!
    Melo

    Bug Reports

  • fullscreen slider on mobile weird footer margin space!
    M melo_lenosier
    Jan 20, 2023, 3:47 PM

    Hello again,

    I just found out this bug on the mobile.
    When fullscreen slider is activated, in the mobile version you have a weird white margin at the bottom of every slide. I checked with the inspector and it seems attributed some min-height: calc (100vh - 80px) to a not activated footer. Indeed I dont use any footer for this website.

    Somebody has the same issue?

    Thanks in advance,
    Melo

    Bug Reports

  • text or div FadeIn / fadeout every row on fullscreen slider
    M melo_lenosier
    Jan 20, 2023, 10:34 AM

    Hello everybody,

    I would like to know if there is a way of applying some simple CSS transition effect FadeIn and Out for some text or div every time you slide up or down a row when the Fullscreen slider is activated.

    I was trying to adapt the JS proposed in this thread Change nav and logo text to white/black when scrolling, but unfortunately I didn't have any success. The code doesn't work when the Fullscreen slider is activated, but it does work when it is not.

    Anybody that could help on this?
    Thanks

    Melo

    General Discussion

  • Image hover addon with video possible?
    M melo_lenosier
    Dec 6, 2022, 4:29 PM

    If anybody needs it, here is the script I used.
    It was tricky because there was an annoying phenomena between the hover and the scroll functions. Basically while scrolling the page, the browser (Chrome especially) doesn't send any other mouse coordinates, therefore the hovered video was constantly there till the scroll was stopped.

    Here is a script that avoid this problem:

    <script>
    let hoveredElement;
    let mouseX = 0, mouseY = 0;
    
    document.addEventListener('DOMContentLoaded', () => {
      document.addEventListener('mousemove', event => {
        mouseX = event.clientX;
        mouseY = event.clientY;
    
        hover(event.target);
      });
    
      document.addEventListener('scroll', () => {
        const hoverTarget = document.elementFromPoint(mouseX, mouseY);
        if (hoverTarget) {
          hover(hoverTarget);
        }
      });
    });
    
    function hover(targetElement) {
      // If the target and stored element are the same, return early
      // because setting it again is unnecessary.
      if (hoveredElement === targetElement) {
        return;
      }
    // On first run, `hoveredElement` is undefined.
      if (hoveredElement) {
        if (hoveredElement.hasAttribute("data-videoid")) {
    document.getElementById(hoveredElement.getAttribute("data-videoid")).classList.remove('hoverscrolled');
         console.log(hoveredElement.getAttribute("data-videoid"));
         console.log(document.getElementById(hoveredElement.getAttribute("data-videoid")));
    
    }
    
      }
    
      hoveredElement = targetElement;
    if (hoveredElement.hasAttribute("data-videoid")) {
    document.getElementById(hoveredElement.getAttribute("data-videoid")).classList.add('hoverscrolled');
          console.log(hoveredElement.getAttribute("data-videoid"));
         console.log(document.getElementById(hoveredElement.getAttribute("data-videoid")));
    }
    
    }
    </script>
    

    HTML:

    <div data-videoid="one_data"  >
    </div>
    
    <video id="one_data" class="vid_background" autoplay muted loop>
      <source src="https://somevideo.mp4" type="video/mp4">  Your browser does not support HTML5 video.
    </video>
    
    

    CSS:

    video.vid_background{
         opacity: 0;
         left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: -5;
        width: 40%;
        position: fixed;
        height: 50%;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
     }
     
    video.vid_background.hoverscrolled  {
        opacity: 1;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: -5;
        width: 40%;
        position: fixed;
        height: 50%; 
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
     }
    
    General Discussion

  • Image hover addon with video possible?
    M melo_lenosier
    Dec 2, 2022, 3:31 PM

    I am also very interested in this. Video-hover would be great.
    Thank you!

    General Discussion

  • Custom CSS file location
    M melo_lenosier
    Sep 18, 2020, 9:21 AM

    I see... Could I please know anyway where this compiler file is?
    Thank you

    General Discussion

  • Custom CSS file location
    M melo_lenosier
    Sep 8, 2020, 7:40 AM

    Hello everybody,

    I already tried to search something about it in the forum, but with no luck.
    I was wondering if it would be possible to access to the Custom CSS & HTML file via ftp and modify it freely on whatever editor code app. I think it would be much easier pressing cmd+S every time, as well as finding the right line, etc.
    I already tried to find the file in the themes>lay folder in the ftp, but with no result.

    Did anybody tried it? Is it possible?

    Thanks in advance,
    Melo

    General Discussion

  • Mobile Gridder not working after Gridder Defaults update!
    M melo_lenosier
    May 7, 2020, 8:04 AM

    Hello there,
    I report here a pretty big problem.
    After creating and editing several pages and project I updated and saved the Gridder Defaults and now the Phone Layout it is not showed correctly: the contents go over the grid (which seem visualized as the desktop one). It's impossible to operate.

    Here a screenshot:
    Schermata 2020-05-07 alle 10.01.31.png

    Hope it's fixable!
    Melo

    Bug Reports

  • Cover option on mobile not working
    M melo_lenosier
    May 6, 2020, 3:17 PM

    Quote!
    Same to me.

    Bug Reports

  • Search function not working properly
    M melo_lenosier
    Apr 26, 2020, 8:24 AM

    Hello Armin,
    hope you are well :)

    I am doing this website for a cinema web magazine (still in progress) and I wanted to introduce the search function you did. It works, but not properly. When I write something in the search box it gives me results that don't contain that specific word inside. For example when you write "Carlo" it shows you 2 results: one is the correct one about Carlo Sironi and then there is another one in which does not appear the word "Carlo" at all, but it displays it anyway...

    Am I missing something?
    Here you have the website.

    Thanks,
    Melo

    Bug Reports

  • Carousel 100vh on mobile not working
    M melo_lenosier
    Jun 7, 2019, 12:27 PM

    Danke schön!

    General Discussion

  • Carousel 100vh on mobile not working
    M melo_lenosier
    May 27, 2019, 6:33 PM

    Nothing of that kind. Everything is set the same: 0 margin or padding.
    It's a Carousel problem.
    But thanks for checking! :)

    General Discussion

  • Carousel 100vh on mobile not working
    M melo_lenosier
    May 27, 2019, 1:31 PM

    Ok, please let me know!

    Meanwhile I wanted to know if at the moment there are any alternative solutions.
    For example, if I use the Carousel while enabling the Fullscreen Slider it work perfectly, it doesn't overflow vertically (here). The only problem is that, in order to make the Fullscreen slider working, I have to insert 2 Rows and in this way there are problems when swiping from left to right because one Row has the Carousel with all the images inside and the other Row has just one image inside another Carousel.
    I wonder if there is a way to make the Fullscreen slider working with just one Row. That would solve the problem. Or maybe having 2 Rows but one should be set in display:none (but probably is not that easy).

    Hope you understand what I meant.
    Thanks again!

    melo

    General Discussion

  • Carousel 100vh on mobile not working
    M melo_lenosier
    May 23, 2019, 11:29 AM

    It works, ok, but it's not properly fixed as when you active the Fullscreen slider with the direction set to Horizontal. Indeed now you can scroll up and down a little bit, but that should not happen. The hoverflow should be completely hidden. You know what I mean?

    Here you can see it in a video.

    Thanks

    General Discussion

  • Carousel 100vh on mobile not working
    M melo_lenosier
    May 21, 2019, 5:01 PM

    Hello everybody,

    I did this single row page where inside there is only the fantastic LT Carousel in 100vh height. Everything works perfectly on Desktop, no extra top or bottom padding. No overflow. Cool! But when you switch to Mobile there this annoying scroll due to I dont know what.
    You can see it here, please use the mobile to check it because from the desktop browser inspector seems fine.
    I have already set Use Browser Height for Row Height and the Top and Bottom margin to zero.

    By doing various tests I tried to enable the Fullscreen Slider and set its direction to Horizontal. For making it working I had to add another Row, but in this way the Carousel height was perfectly stuck, zero overflow! But this system was not working for me because I just need one Row for one Carousel.

    So, is there a way to have the Carousel perfectly stuck at 100vh as it works in the Fullscreen Slider?

    Hope you understand my point :)

    Thank guys,
    melo

    General Discussion

  • Problem with hiding Menu/Navbar mobile with Cover Project
    M melo_lenosier
    Feb 20, 2019, 8:07 PM

    Hey guys,
    I almost finished this new website and I was setting the mobile-menu, trying to have a not fixed menu—hide when scrolling interaction. It works everywhere without problems except from all the projects where Covers are enabled. Is that normal? You can see here what I mean: it creates a padding-top in the div id="cover-region" of the same pixel amount of the navbar-height.

    Projects are set with 0% Top and Bottom Frame.
    I am not really sure what other things should I check.

    Thanks in advance :)
    Melo

    General Discussion

  • Fullscreen Slider not working (desktop+mobile)
    M melo_lenosier
    Jan 31, 2019, 3:19 PM

    Ok! I've found the problem.
    It was in a JS for grabbing an element with mouseup and mousedown events. So I've inserted that JS directly on the related page as mentioned here.

    Thanks in any case :)

    General Discussion

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
M
maxkesslau
21 minutes ago
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