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

K

kalamakumaran

@kalamakumaran
About
Posts
57
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • autoplay on fullscreen slider
    K kalamakumaran

    @arminunruh

    Ah Great. Didn‘t know the sections are adressed as slides when using horizontal direction. Easy ;)

    Addons

  • autoplay on fullscreen slider
    K kalamakumaran

    @minutes

    Pm!

    Addons

  • autoplay on fullscreen slider
    K kalamakumaran

    @minutes

    try this. haven't tested it. maybe it works ;)

    <script>
        window.laytheme.on("newpageshown", function(layoutObj, type, obj) {
            var slideTimeout;
    
            function moveHorizontalSection() {
                var activeSection = jQuery.fn.fullpage.getActiveSection();
                var nextSection = activeSection.index() + 1;
    
                if (nextSection <= jQuery.fn.fullpage.getSections().length) {
                    jQuery.fn.fullpage.moveTo(nextSection, 0);
                } else {
                    jQuery.fn.fullpage.moveTo(1, 0);
                }
            }
    
            slideTimeout = setInterval(moveHorizontalSection, 10000);
        });
    </script>
    
    
    Addons

  • autoplay on fullscreen slider
    K kalamakumaran

    @minutes

    if you are using the vertical direction of the fullscreen slider put this in Custom <head> content

    <script>
        window.laytheme.on("newpageshown", function(layoutObj, type, obj){
            slideTimeout = setInterval(function () {
        jQuery.fn.fullpage.moveSectionDown();
                }, 10000);
        });
    </script>
    
    Addons

  • Footer elements displayed in the Lightbox
    K kalamakumaran

    @solyar

    Maybe you need to update Laytheme?

    Bug Reports

  • overlay vertical position & mobile view
    K kalamakumaran

    @dingdong

    maybe add this to custom desktop css?

    .lay-overlay > .lay-content {
    transform: translateX(-50%);
    }

    General Discussion

  • Footer elements displayed in the Lightbox
    K kalamakumaran

    @solyar

    "To exclude an image from the Lightbox, please right click it in the Gridder and choose “Lightbox off for this image”.

    https://laytheme.com/addons/lightbox.html
    
    Bug Reports

  • 3D logo size
    K kalamakumaran

    @renatocruzsantos

    There are various ways to increase the file size limit for uploads.

    check this

    Addons 3d logo wordpress

  • invert carousel slide direction
    K kalamakumaran

    @Blurred00 @arminunruh

    Give the carousel you want to invert the class "reverse"

    Add this to your Custom JS

    <script>
    window.laytheme.on("newpageshown", function(){
    // Get the swiper-container element 
    var swiperContainer = document.querySelector('.swiper-container');
    
    // Check if the element exists and has the "reverse" class
    if (swiperContainer && swiperContainer.classList.contains('reverse')) {
      // Add the dir="rtl" attribute
      swiperContainer.setAttribute('dir', 'rtl');
    }
       });
    </script>
    

    and it should work!

    But apparently it seems to be not possible to add classes to carousels. Is it a bug @arminunruh ?

    Because when I remove the if statement out of the code it affects the .swiper-container and it inverts the direction.

    General Discussion

  • row backgrounds not visible in gridder
    K kalamakumaran

    @arminunruh Thanks <3

    Bug Reports

  • Laytheme 5.7.3 - background images white in editor
    K kalamakumaran

    @thomasmaier

    I've the same problem. It seems to be happening when the rows have background colors and background images at the same time. The background color overlays the images. at least in my case....

    Bug Reports

  • A modal/pop up window displaying extra info
    K kalamakumaran

    @alasdair17

    It can be done easily with custom css and a bit of js.
    Use one of your rows to put that extra info in. Give it a class style and hide it with custom css.
    Put a button somewhere to make the pop-up hide and show on click.

    Feedback

  • row backgrounds not visible in gridder
    K kalamakumaran

    Hi,

    after the latest update the left and right row background images are not visible in the gridder (backend). Tried to delete and set up again. Doesn‘t fix the issue. They are visible on the frontend.

    Best,
    Basti

    Bug Reports

  • Sticky Footer now has Background
    K kalamakumaran

    @CesareCesariano
    Send me your login and I’ll fix it

    Bug Reports

  • Sticky Footer now has Background
    K kalamakumaran

    @CesareCesariano

    alt text

    Bug Reports

  • Sticky Footer now has Background
    K kalamakumaran

    @CesareCesariano
    Your footer still has a white background color. Clear it and it should be okay.

    Bug Reports

  • large Image gallery with filter options - need help!
    K kalamakumaran

    I sent you a dm!

    Need Custom Coding for Lay Theme? Find 3rd Party Developers here.

  • large Image gallery with filter options - need help!
    K kalamakumaran

    Hey Tobias,
    for what reason do you move your website to laytheme?
    It seems to work pretty well.

    Best,
    Basti

    Need Custom Coding for Lay Theme? Find 3rd Party Developers here.

  • how to Lottie / json animations?
    K kalamakumaran

    Haven't tested out but you can try to:

    1. Include the Lottie library in your project via CDN Link
    <script src="lottie.min.js"></script>
    
    
    1. Give the row you would like to assign the animation to a class oder id (e.g. #animation-container)

    <script>
    window.laytheme.on("newpageshown", function(){
    const animationContainer = document.getElementById('animation-container'); // replace with your div ID
    const animationData = {
      container: animationContainer,
      renderer: 'svg',
      loop: true,
      autoplay: true,
      path: 'your-animation.json' // replace with the path to your Lottie JSON file
    };
    
    const animation = lottie.loadAnimation(animationData);
    });
    </script>
    
    1. Add this to your Custom CSS
    #animation-container {
      background-image: url("data:image/svg+xml;utf8," + encodeURIComponent(animationData.container.innerHTML));
    }
    

    to make the created SVG your background-image

    Good luck ;)

    General Discussion

  • Fix image at certain scroll position & disable Link function of Project Thumbnails
    K kalamakumaran

    @littlegestalt

    Dm!

    Need Custom Coding for Lay Theme? Find 3rd Party Developers here.
  • Login

  • Don't have an account? Register

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