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

RichardR

Richard

@Richard
Global Moderator
About
Posts
3.4k
Topics
3
Shares
0
Groups
1
Followers
12
Following
0

Posts

Recent Best Controversial

  • Youtube Cookies / Always Set even if I don't use them?
    RichardR Richard

    Dear @wua-frank

    Will forward to Armin for some insight ✅


    Best wishes & thank you for supporting Lay Theme
    Richard
    General Discussion

  • Maintenance/coming soon
    RichardR Richard

    Dear @felix_rabe @pandeli

    Thank you for the Valid input, I agree the Customizer has some UI issues with Navigation. I personally have always found ways around this, but that doesn't mean there isn't room for improvement.

    This has been added to the Development notes & forwarded to Armin ✅


    Have a great day both of you, & thank you for supporting Lay Theme ✨
    Richard
    General Discussion

  • Category Filters with Lay Theme Version 3.6.1
    RichardR Richard

    Dear @louisdebelle

    This does make sense :)
    I would agree with Tags as well, they are already in use and make complete sense - I will add this to the Development notes! :)

    Best wishes
    Richard

    General Discussion

  • Lay Theme and Polylang_Front Page
    RichardR Richard

    Dear @nypaloto

    This is amazing :)
    Thank you so much for doing the research and coming back with a conclusion to the thread that will help many others!

    Sincerely Thank you for helping the Forum Community and have a great week

    Sincerely
    Richard

    General Discussion

  • Vimeo video (iframe) in Carousel: Swipe not working on mobile
    RichardR Richard

    Dear @acmarion

    Amazing! :)

    Thank you so much for helping to build a stronger community.

    Sincerely
    Richard

    General Discussion

  • How to hide site title on home page?
    RichardR Richard

    Dear @willcanning

    Awesome :)
    Thanks for your help and concise answer!

    Best
    Rich

    General Discussion

  • Easy option to resize cover feature.
    RichardR Richard

    Dear @fabiandraxl

    Good idea ⭐️Have added to the development notes ✅


    Best wishes
    Richard
    Feedback

  • white font not readable in text-field
    RichardR Richard

    Screen Shot 2022-05-09 at 11.59.47 AM.png

    Bug Reports text textfield

  • Carousel not working
    RichardR Richard

    Dear @emgeoffice

    Have sent you a message via 'chats' :)

    Best
    Richard

    Bug Reports

  • Hover image + Row Link
    RichardR Richard

    Dear @Hayo-Gebauer

    Lovely website :)
    Could you please add the following code to 'Lay Options - Custom CSS & HTML' and let me know if this helps?

    a.row-bg-link.no-row-bg-link-children {
        z-index: 10 !important;
    }
    

    Not exactly sure at first look why this is happening, but its to do with the text area, overlapping the row's link:
    Screen Shot 2021-02-11 at 5.02.43 PM.png

    Unsure if its a design issue or a Bug, Talk soon :)
    Richard

    Addons

  • Wordpress 6.0
    RichardR Richard

    Thanks @bbbfg have a great day 👍

    General Discussion

  • Background images hovering link, images on hover
    RichardR Richard

    Dear Simon

    @Simonabele

    This will take some custom coding but it's a worthy pursuit & good idea 🌝

    The main thing is to understand how the images appear and then mimic that but slightly differently.
    There is the lay-imagehover-region. This is the parent container that holds all the images waiting behind the scenes.

    The images and the container have an opacity of zero - opacity:0;

    When you hover or 'mouseover' a project link the class show is added to the image hover region as well as the image that relates to that link.

    You can see this behaviour here:
    Screen Shot 2022-05-24 at 3.55.52 PM.png
    And now when 'mouseover':
    Screen Shot 2022-05-24 at 3.56.00 PM.png

    When the class show is added to these elements it comes with new CSS instructions.

    This CSS:

    .lay-imagehover-region img {
        opacity: 0 !important;
        position: fixed;
        pointer-events: none;
        top: 0;
        left: 0;
    }
    

    Changes to:

    .lay-imagehover-region img.show {
        opacity: 1 !important;
        position: fixed;
        pointer-events: none;
        top: 0;
        left: 0;
    }
    

    Notice the opacity change to 1 (invisible to visible) & the class 'show' added to the CSS selections.

    So to breakdown - On mouseover add 'show' and when you remove the mouse - remove the class show

    For you to achieve your result you need to say:

    On mouseover add "show" without the "remove show". 🌝

    https://laytheme.com/documentation/custom-css-styling.html

    https://laytheme.com/documentation/custom-javascript.html

    https://stackoverflow.com/questions/16821564/how-to-add-remove-class-on-mouseover-mouseout-jquery-hover

    Just remember you dont need the removeClass function.


    Best wishes
    Richard
    General Discussion hover fullscreen hover image background portfolio

  • Accordeon-feature or plugin?
    RichardR Richard

    Dear @bbbfg

    Currently not without coding an accordion - there are threads on this forum where users have done that and also simple ones online that you could implement.

    This is a great idea though and will happily add to the development notes 🌝


    Best wishes
    Richard
    General Discussion

  • Youtube Cookies / Always Set even if I don't use them?
    RichardR Richard

    Thanks @arminunruh ! 💥

    General Discussion

  • Background color CPL
    RichardR Richard

    Thanks @emgeoffice 👍

    General Discussion

  • Use mobile menu on desktop
    RichardR Richard

    Dear @emgeoffice

    To use Lay Theme's built in Mobile menu for all screen sizes you would need to set the phone breakpoint high.
    (Use custom phone layouts for content)

    Lay Theme offers a Sub-menu feature:

    https://laytheme.com/documentation/menus.html#submenus

    It may be a good starting point as they have similarities :
    Screen Shot 2022-04-16 at 3.32.22 PM.png Screen Shot 2022-04-16 at 3.32.58 PM.png

    Setting Sub-menu behaviour to 'Click'. Position Menu top-right - Change "Text" of Sub-menu to image.

    LINKS:

    http://laythemeforum.com:4567/topic/7282/use-mobile-menu-on-desktop-easy-tutorial-drop-down-menu-right-aligned-text/6

    http://laythemeforum.com:4567/topic/6991/upload-image-for-menu-item/2

    http://laythemeforum.com:4567/topic/5995/burger-menu-in-desktop-view/3


    Best wishes
    Richard
    General Discussion

  • Fullscreen slider images flash in Safari
    RichardR Richard

    Dear @thomasmaier

    If you can confirm that the Bug is not a result of any Third-party plugin, CSS, Javascript or outdated version of Lay Theme & its addons, then:

    Please send your website address, /wp-admin/ username and password and a link to this topic to info@laytheme.com?

    Armin can then have a better look 🔍✅
    Any relevant videos/screenshots of the flicker behaviour will also help.

    I will forward this to him as well 🌝


    Best
    Richard
    General Discussion

  • Current date & time shown in real time on the Footer
    RichardR Richard

    Dear Fabian

    @fabiandraxl

    The Fullscreen Slider turns each 'row' into a 'slide', the "Year" is being displayed within the contents of the first row. When you move to the second slide (second row of gridder) the "Year" is no longer visible.

    Screen Shot 2022-04-08 at 3.12.13 PM.png

    The placement of your HTML : <div id="year"></div> in the Gridder is the source of issue. It needs to be present on all Rows or exist outside of the fullscreen slider somehow.


    Best ⭐️
    Richard
    General Discussion

  • Youtube Cookies / Always Set even if I don't use them?
    RichardR Richard

    Not yet sorry @wua-frank

    Best wishes ✨
    Richard
    General Discussion

  • Custom CSS Class Problem
    RichardR Richard

    Have a great day @robochicken thanks for supporting Lay Theme !!

    General Discussion
  • Login

  • Don't have an account? Register

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