Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Search
Skins
  • Light
  • Brite
  • 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

Global Moderators

Forum wide moderators

Private

Posts


  • Project Overlay + Carousel / Lightbox issue on direct URL load
    arminunruhA arminunruh

    maybe it had to do with the cache not clearing automatically after lay theme updates.
    You could try to update again now and see if it works then.

    You can also send the URL to the page where it doesn't work to info@laytheme.com

    But please make sure to send a link to this topic too for context.

    Bug Reports

  • bar to separate menu elements
    arminunruhA arminunruh

    you're welcome! <3

    General Discussion

  • bar to separate menu elements
    arminunruhA arminunruh

    I changed the code a little bit. I had one or two things that were not optimal yet. You can copy the code again from my post above.

    You will find it in Lay Options . Custom HTML and CSS, and I think it's the very last text box at the bottom.

    General Discussion

  • bar to separate menu elements
    arminunruhA arminunruh

    then you can adapt the CSS so the line has the right height and spacing.

    grafik.png

    Try to adapt the CSS using maybe ChatGPT or Gemini or something if you need help with that

    General Discussion

  • bar to separate menu elements
    arminunruhA arminunruh
    <script>
    (function () {
    	var lists = document.querySelectorAll('nav.laynav.primary > ul');
    	for (var i = 0; i < lists.length; i++) {
    		var ul = lists[i];
    		// collect the real menu items (excluding dividers)
    		var items = [];
    		for (var c = 0; c < ul.children.length; c++) {
    			var child = ul.children[c];
    			if (child.tagName === 'LI' && !child.classList.contains('lay-menu-divider')) {
    				items.push(child);
    			}
    		}
    		// insert a divider before every menu item except the first
    		for (var j = 1; j < items.length; j++) {
    			var prev = items[j].previousElementSibling;
    			if (prev && prev.classList.contains('lay-menu-divider')) {
    				continue; // divider already there
    			}
    			var divider = document.createElement('li');
    			divider.className = 'lay-menu-divider';
    			divider.setAttribute('aria-hidden', 'true');
    			ul.insertBefore(divider, items[j]);
    		}
    	}
    })();
    </script>
    
    <style>
    /* Vertical divider line between menu items (JS-inserted <li>) */
    nav.laynav.primary > ul > li.lay-menu-divider {
    	display: inline-block;
    	vertical-align: middle;   /* vertically centered on the menu line */
    	width: 1px;               /* line thickness */
    	height: 15px;             /* line height */
    	margin: 0 2px;           /* space left/right → breathing room from the text */
    	padding: 0;
    margin-top: 5px;
    	background-color: #000;   /* black */
    }
    </style>
    

    copy this and put it into "html at bottom"

    General Discussion

  • Accordion Styles have been partially removed
    arminunruhA arminunruh

    okay, so it seems that in some cases Lay Theme's own cache did not clear itself when updating to a newer version of lay theme. Probably that's why it didn't look right for you now.

    I will release a fix for this today. So then probably the only thing you would need to do is to update again today, and then it should look right.

    Bug Reports

  • Accordion Styles have been partially removed
    arminunruhA arminunruh

    hey, actually, can you disable all your caching plugins and also click "clear layout cache" ?

    In case that's shown in your WordPress admin panel admin bar at the top

    And then check it out again.

    Bug Reports

  • Lightbox shows images from front page instead of current project page
    arminunruhA arminunruh

    it was released yesterday

    Bug Reports

  • Background color section (wrapper - not full width)
    arminunruhA arminunruh

    do you mean the whole layout or just per row?

    General Discussion

  • Background color section (wrapper - not full width)
    arminunruhA arminunruh

    hey, no, there is no easy way, except for using a stack, but I will write this down as a feature request.

    General Discussion

Member List

arminunruhA arminunruh
CyberSlayersC CyberSlayers
RichardR Richard
Armin UnruhA Armin Unruh
mariusjopenM mariusjopen
  • Login

  • Don't have an account? Register

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