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

arminunruhA

arminunruh

@arminunruh
Global Moderator
About
Posts
9.4k
Topics
16
Shares
0
Groups
1
Followers
53
Following
0

Posts

Recent Best Controversial

  • Hey everybody!
    arminunruhA arminunruh

    This will be where we talk about shop issues and questions and feedback.

    Shop / WooCommerce

  • Link to Anchor from another page
    arminunruhA arminunruh

    Ok so I have an image in page1 and I give it an ID.
    You can also give a row an ID, doesn't matter. Right click -> set html class and id

    0_1520010530521_Screen Shot 2018-03-02 at 18.01.44.png

    Now on another page, I create a link. Here I create a link on an image, but you could also create a link when you edit text. The important part is "#hello".
    "hello" is the id that I set before.

    0_1520010512900_Screen Shot 2018-03-02 at 18.02.21.png

    Now I think Marius' code is probably right, maybe the problem was just that the easing named 'easeOutSine' doesn't exist. Not 100% sure here.
    Add the following code to "Lay Options" -> "Custom <head> content":

    <script>
        window.laytheme.on('newpageshown', function(){
           if(window.location.hash.length > 0){
               var id = window.location.hash;
               if(jQuery(id).length > 0){
                    jQuery('html, body').animate(
                    { scrollTop: jQuery(id).offset().top },
                    { duration: 1200 });
               }
           } 
        });
    </script>
    

    That code above is cool cause it works for all pages

    General Discussion

  • Update Problem 4.9.2 to 4.9.3
    arminunruhA arminunruh

    yea it was a bug, i didnt set the correct version in one file. now with 4.9.4 thats fixed

    Bug Reports

  • Color for individual row gutter
    arminunruhA arminunruh

    Hey! That's not possible right now. But I think it's a really good idea, so I will code that one day.

    General Discussion row gutter color

  • Lazy load with blurred preview
    arminunruhA arminunruh

    will be included with the next update

    General Discussion

  • Blog integration?
    arminunruhA arminunruh

    yea im going to start working on the blog feature now!

    General Discussion blog

  • Lazy load with blurred preview
    arminunruhA arminunruh

    theres no way you can do that, however, i've been thinking of coding this as an option for lay theme and it is still on my list

    General Discussion

  • Functional tags in Lay Theme
    arminunruhA arminunruh

    hey so with the new update, projects will have body classes like category-1 category-2 where the number is the id of the category

    General Discussion

  • Feature request: Stack inside of another stack
    arminunruhA arminunruh

    what i need to code is to be able to have multiple elements in one line in a stack i think

    Feedback

  • Responsive font size
    arminunruhA arminunruh

    Yeah, I think it would be good to be able to either define font sizes in px or in vw. When defined as vw, the font size resizes with the browser. https://css-tricks.com/viewport-sized-typography/

    Should only be used for big text though. Small text could become way too small at a certain size. Like here: http://shop.mango.com/iframe.faces?state=he_004_AL
    :scream:

    Edit: In version 1.022 the font-size can now be set in % in Text Formats and the Customizer

    Feedback

  • Product Categories/Tags Filters
    arminunruhA arminunruh

    its on my todo list

    Shop / WooCommerce

  • Fade Effect / Smooth Transitions Links via "Custom HTML“
    arminunruhA arminunruh

    Can you post the link or send it to info@laytheme.com with a link to this topic please?

    One reason could be that a shortcode is in use on the page that you link to.
    To make shortcodes work, the whole website needs to refresh, so you won't have a smooth transition.

    General Discussion

  • Rounded corners
    arminunruhA arminunruh
    .lay-carousel{
        border-radius: 20px;
        overflow: hidden;
    }
    
    .type-elementgrid .img{
        border-radius: 20px;
        overflow: hidden;
    }
    
    General Discussion

  • make image caption follow mouse!
    arminunruhA arminunruh

    enter this in lay options → custom css & html → custom <head> content:

    <script>
        var $caption;
        jQuery(document).on('mouseenter', '.col.type-img', function(e){
            //console.log(e);
            $caption = jQuery(e.currentTarget).find('.caption');
        })
        jQuery(document).on('mouseleave', '.col.type-img', function(){
            console.log('mouseleave');
            $caption.css('display', 'none');
            $caption = null;
        })
     
        var offset = 10;
        jQuery(document).on('mousemove', '.col.type-img', function(e){
            console.log('mousemove');
            if($caption != null){
                $caption.css({'display': 'block', 'top': e.clientY + offset, 'left': e.clientX + offset});
            }
        })    
    </script>
    

    enter this in "custom css for desktop":

    .no-touchdevice .col.type-img .caption{
        position: fixed;
        display: none;
        z-index: 99;
    }
    

    now in the gridder, add an image in your layout, select it and click "edit caption" button.
    add a caption. now on your website the caption will follow your mouse.

    General Discussion

  • When will "sticky" become STICKY?
    arminunruhA arminunruh

    ah yes you're right.
    i will work on it!

    General Discussion

  • Start gif/video mouse hover in project thumbnail
    arminunruhA arminunruh

    go to lay options

    there is a setting for project thumbnail videos

    then in customize -> project thumbnails

    there are settings for playing a video on mouseover
    try that

    General Discussion

  • Split screen website Thumbnail grid hides active project
    arminunruhA arminunruh

    ok can u update lay theme now

    go to lay options, scroll down, and uncheck
    "Hide current Project from Thumbnailgrid"

    General Discussion

  • Text Rotation for Project Arrow
    arminunruhA arminunruh

    Good idea!

    Please add this CSS to "lay options" -> "custom css & html" -> "custom css for desktop":+1:

    .project-arrow.pa-prev{
        transform-origin: center;
        transform: translate(-50%, -50%) rotateZ(90deg) translateY(-20px);
    }
    
    .project-arrow.pa-next{
        transform-origin: center;
        transform: translate(50%, -50%) rotateZ(90deg) translateY(20px);
    }
    

    you can play around with the -20px and 20px. These two values define the space between the browser edge and the project arrow text.

    I think i will include the rotating for this as an option one day :).

    General Discussion project arrow

  • News Feature
    arminunruhA arminunruh

    hey there!
    ok i will work on it!

    General Discussion

  • Multilanguage problem with home page (Polylang)
    arminunruhA arminunruh

    actually yea this is a bug.
    i just fixed it, will be released with the next update. sorry this wasn't fixed for so long, this is actually a pretty bad/important bug :O :O

    General Discussion
  • Login

  • Don't have an account? Register

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