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

S

Seb

@Seb
About
Posts
7
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Submenu disappears when clicked on
    S Seb
    Jun 4, 2024, 12:10 PM

    hey armin!

    thanks for the respond :)
    the setting in customize i already tried.. didnt worked.

    yes if i dont get any fix i think i will switch to a older version, if i get a solution i gonna post it here!

    Bug Reports

  • Submenu disappears when clicked on
    S Seb
    May 31, 2024, 1:54 PM

    Hi there,

    this worked before Updating recently.
    I have some Custom CSS and Javascript for the Menubar:

    /*menu*/
    .sitetitle {
        display: block;
        left: 0;
        width: 20.25%;
        padding: 2%;
        height: 200px;
        top: 0;
        background: #2F2F2F;
        border-right: 1px solid black;
        box-sizing: border-box;
    }
    .sitetitle img {
        max-height: 100%;
        max-width: 100%;
        width: auto !important;
    }
    
    nav.primary {
        left: 0;
        background: #2F2F2F;
        border-right: 1px solid black;
        width: 20.25%;
        padding: 2%;
        height: calc(100% - 200px);
        overflow: auto;
        top: 200px;
        box-sizing: border-box;
    }
    nav.primary li {
        margin-bottom: 0px;
    }
    nav.primary li a {
        display: inline-block;
        margin-bottom: 6px !important;
        font-size: 14px;
        white-space: pre-wrap;
    }
    
    nav.primary ul ul{
        margin-left: 15px;
    }
    nav.laynav.primary li.hidden {
        display: none;
    }
    nav.laynav.primary li.hidden.show {
            display: inline-block;
    }
    
    .sub-menu {
        display: none;
        margin-bottom: 16px;
    }
    
    .menu-item > a {
        color: #cccccc;
    }
    
    .menu-item > a :hover {
        color: #EEA978;
    }
    nav.laynav .menu-item.current-menu-item > a {
        color: #EEA978 !important;
    }
    
    .menu-item-has-children > a {
        position: relative;
        padding-left:15px;
    }
    .menu-item-has-children > a::before {
        content: "\f0da";
        font-family: 'FontAwesome';
        display: block;
        position: absolute;
        left: 0;
        top: 0px;
        width:10px;
        height: 24px;
        transition: all 0.3s;
        font-size: 16px;
        line-height: 20px;
        color: #EEA978;
    }
    
    .menu-item-has-children.active > a::before, .current-menu-parent.active > a::before, .current-menu-ancestor > a::before  {
        content: "\f0d7";
    }
    
    .menu-item-has-children.active > .sub-menu, .current-menu-parent.active > .sub-menu, .current-menu-ancestor > .sub-menu {
        display: block;
        margin-bottom: 10px;
    }
    

    and:

    <script type="text/javascript">
    var parent = document.querySelectorAll(".current-menu-ancestor > a")[0];
    
    var elements = document.querySelectorAll(".menu-item-has-children > a");
    
    var onClickFunction = function(e) {
        e.preventDefault();
        e.stopPropagation();
        this.parentNode.classList.toggle('active');
        return false;
    };
    
    for (var i = 0; i < elements.length; i++) {
        elements[i].addEventListener('click', onClickFunction, false);
    }
    
    var searchParams = new URLSearchParams(location.search);
    
    if(searchParams.has('moduleKey')) {
     //   window.location = "https://docs.nextra-web.com/de/intro/";
        
        var showElements = document.querySelectorAll("a[title='"+searchParams.get('moduleKey')+"']");
        if(showElements.length > 0) {
            var elements = document.querySelectorAll("nav.primary > ul > li > a:not([title='nextra.Basics'])");
            for (var i = 0; i < elements.length; i++) {
                elements[i].parentNode.classList.add('hidden');
            }
            
            for (var i = 0; i < showElements.length; i++) {
                elements[i].parentNode.classList.add('show');
            }
        }
    }
    
    </script>
    

    The Menu looks like this:
    2024-05-31_15h51_29.png

    Now when i Mouseclick on the Submenu it loads the Site but the Dropdown disappears:
    2024-05-31_15h52_57.png

    i already tried some changes but none worked and i cant find the problem :(

    Maybe someone knows more?

    Kindly,

    Sebastien

    Bug Reports

  • Image hover -> Image on image
    S Seb
    Mar 30, 2023, 2:39 PM

    @alasdair17 thanks for the fast answer, i gonna try this one :)

    Addons

  • Image hover -> Image on image
    S Seb
    Mar 24, 2023, 9:13 AM

    Hey im making a website for friends and they showed me this site:

    https://www.maio-architects.com/

    they have a hover image on image in i wanted to ask if this is possible with the addon "image hover"?

    maybe with a bit custom code?

    thanks for answers,

    kindly,

    sebastien

    Addons

  • Error: Sites doesnt appear since Update
    S Seb
    Jul 26, 2022, 8:17 AM

    Hello there,

    the Menu-Bar appears but the Sites does not.

    Bildschirmfoto 2022-07-26 um 10.10.08.png

    What is the problem? Thanks for help!

    Regards,

    Sebastien

    Bug Reports

  • Vertical Menu with Unfold/Fold-Option for Sub-Menus?
    S Seb
    Mar 24, 2021, 3:32 PM

    I solved it with Custom CSS.

    Thanks for the Answers!

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

  • Vertical Menu with Unfold/Fold-Option for Sub-Menus?
    S Seb
    Jan 27, 2021, 9:19 AM

    Hi!

    Im making a simple Help-Site for my Office and i wanted to ask if its possible to customize the Menu that you have a simple Dropdown with Fold/Unfold Option for the Sub-Menu oder Sub/Sub-Menus?

    Should look a bit like this here:

    2021-01-27_10h12_34.png 2021-01-27_10h12_51.png

    Would be happy if this is possible =)

    Regards,

    Seb

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

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
I
itsmarkjohn
11 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