Skip to content

General Discussion

A place to talk about anything Lay Theme related
4.9k Topics 21.2k Posts
  • Main menu + Title not always hiding on scrolling down

    3
    0 Votes
    3 Posts
    155 Views
    S
    @arminunruh Thanks, I've sent you an email.
  • Web description/preview in google

    2
    1
    0 Votes
    2 Posts
    165 Views
    arminunruhA
    @cschm-tz said in Web description/preview in google: On the other hand, also in the screenshot below, you can see another site appearing below with some other info: 'Editorial -Christian....'. Do you know how I can get rid of it so that there's only one link accessible and have a cleaner google presence? not sure if you can remove one specific site, you can google this! the description you enter in lay options → [image: 1689621231921-screenshot-2023-07-17-at-21.13.45.png] it should show up there, unless its too short. it could take a few days to show up. you could also use the plugin "yoast seo" and see if it works with that plugin afaik the code for the website description of lay theme works correctly. i just looked at it and it works correctly if you have the yoast seo plugin already installed, it will take the description of that plugin, it will overwrite lay theme's website description
  • Project Index - row space top bottom value

    4
    0 Votes
    4 Posts
    166 Views
    arminunruhA
    <3 happy to hear this :D
  • Photography compression

    3
    0 Votes
    3 Posts
    191 Views
    arminunruhA
    yea u can use this plugin: https://wordpress.org/plugins/webp-converter-for-media/ it converts your images to webp heres more advice: https://laytheme.com/documentation/speeding-up-your-website.html
  • One button with multiple anchors in it

    4
    1
    0 Votes
    4 Posts
    275 Views
    arminunruhA
    we made it work via email the html he used wasn't correct and we had to wrap the code in a newpageshown event https://laytheme.com/documentation/custom-javascript.html#newpage-events
  • random order element grid

    5
    0 Votes
    5 Posts
    248 Views
    K
    @arminunruh no way :) that is amazing! thank you so much!!!!
  • different content within one row

    3
    0 Votes
    3 Posts
    123 Views
    A
    @arminunruh "group" feature sounds amazing! This would allow aligning objects within a group, not just within a row. But also having an extra background, textfield, stroke etc. just for a group could be a great design feature. Actually "stack" is kind of having some of these possibilities, but "group" would surely be a further development. :-D All best Aleks
  • This topic is deleted!

    1
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • sticky element on scroll

    4
    0 Votes
    4 Posts
    222 Views
    B
    @arminunruh solved! missing custom row height
  • menu and internal link to a page

    5
    0 Votes
    5 Posts
    194 Views
    arminunruhA
    this is integrated into lay theme: https://laytheme.com/documentation/jump-to-anchor.html
  • Responsive textfield in carousel

    4
    2
    0 Votes
    4 Posts
    178 Views
    arminunruhA
    ah very good! yea the text element in a carousel is probably only good for shorter texts :/
  • This topic is deleted!

    1
    2
    0 Votes
    1 Posts
    7 Views
    No one has replied
  • imagehover image size Vertical vs horizontal

    3
    2
    0 Votes
    3 Posts
    138 Views
    P
    @arminunruh thanks a lot!
  • different carousel style on desktop and mobile

    3
    0 Votes
    3 Posts
    456 Views
    T
    Thanks for your answer @arminunruh I will make a special layout for the mobile version then, no worries. And thanks for the support! ;)
  • Click anywhere close modal for page intro and carousel caption

    2
    0 Votes
    2 Posts
    120 Views
    arminunruhA
    ok read this: https://javascript.info/bubbling-and-capturing any click event bubbles up the dom tree, meaning you can capture any click on any element just by jQuery(window).on('click', function(){ }) or window.addEventListener("click", function(){ }) the event target value shows you what was clicked on specifically: https://developer.mozilla.org/en-US/docs/Web/API/Event/target jQuery(window).on('click', function(e){ console.log(e.target); })
  • Fullscreen slider and image hover bug?

    2
    1 Votes
    2 Posts
    92 Views
    arminunruhA
    yea i will have to re-evaluate how i coded the imagehover addon we have the same issue when the cover feature is enabled could take a while for me to fix this :|
  • image size, mobile

    4
    0 Votes
    4 Posts
    237 Views
    arminunruhA
    ah i see the sizes of elements depend on their width. they don't depend on the height of your browser. so in that case the image will be cut off so when you look at the website on your phone in landscape, the image is cut off. if you use fullscreen slider you can use lay options -> fullscreen slider -> scroll down, activate "Give elements a max-width and max-height and center them" this only works if the image is the only image in the row im planning to somehow make it possible to restrict image sizes based on the height of the browser when you create a carousel you can for example check "fixed height" and enter a value like 100vh which will make the element as tall as the browser height
  • Mobile menu on tablet

    3
    0 Votes
    3 Posts
    174 Views
    B
    @arminunruh thank you it willl be so cool. At the moment my problem is that i show tablet menu really big: [image: 1688373614919-screenshot-2023-07-03-alle-10.39.29.png] this is my css: .navbar { border-bottom-width: 3px; } .fixed-element{ position: fixed; top: 200px; left: 30%; z-index: 5; } .rotate { animation: rotation 8s infinite linear; } .primary li { color: white; background: var(--primary-color); font-size: 5px; font-weight: 100; line-height: 1em; border: 3px solid; border-radius: 20em; padding: 0.25em 0.5em 0.4em 0.5em; transition: 200ms ease-in-out; } .primary li:hover { color: #1F54FF; line-height: 1em; border: 3px solid; border-radius: 20em; padding: 0.25em 0.5em 0.4em 0.5em; } li.current-menu-item { color: #1F54FF; line-height: 1em; border: 3px solid; border-radius: 20em; padding: 0.25em 0.5em 0.4em 0.5em; } .lay-thumbnailgrid-filter-anchor { background: var(--primary-color); font-size: var(--step--1); font-weight: 300; line-height: 1em; border: 3px solid; border-radius: 20em; padding: 0.25em 0.5em 0.4em 0.5em; transition: 200ms ease-in-out; } .lay-thumbnailgrid-filter-anchor:hover { background-color: #1F54FF; color: white; line-height: 1em; border: 3px solid; border-radius: 20em; padding: 0.25em 0.5em 0.4em 0.5em; } .lay-thumbnailgrid-filter-anchor.lay-filter-active { background-color: #1F54FF; color: white; line-height: 1em; border: 3px solid; border-radius: 20em; padding: 0.25em 0.5em 0.4em 0.5em; } Can you help me?
  • Elements change stack order randomly in Fullscreen Slider

    7
    0 Votes
    7 Posts
    318 Views
    B
    Hey @arminunruh , thanks a lot! The hack you suggested worked :) Even better, I just did the most recent update and now it also works without the hack. Did you work on that issue for the newest lay theme update or is it a coincidence?
  • 0 Votes
    4 Posts
    284 Views
    arminunruhA
    xD ok! will work on it soon

For 1on1 paid Lay Theme Coaching, contact: audrey@cyberslayers.work.

We also code custom websites or custom Lay features.
šŸ’æ Email us here: šŸ’æ
info@laytheme.com

Our Web Development company: 100k.studio

Want to tip me? https://www.paypal.com/paypalme/arminunruh

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
Forgot your key, lost your files, need a previous Lay Theme or Addon version? Go to www.laykeymanager.com