Skip to content

General Discussion

A place to talk about anything Lay Theme related
4.8k Topics 20.3k Posts
  • Change dropdown color por projects

    2
    0 Votes
    2 Posts
    75 Views
    mariusjopenM
    Dear @Diagonal try this with CUSTOM CSS: .id-199 .menu-item a { background: red !important; } Your current page ID needs to be there instead of 199. All the best! Marius
  • Project Title text background

    2
    0 Votes
    2 Posts
    53 Views
    No one has replied
  • Text Element Sticky: stick to top on scroll

    9
    0 Votes
    9 Posts
    1k Views
    mariusjopenM
    Dear @ccastells here a very rough sketch. Hope it brings you in the right direction :-) .no-parallax.no-offset.col.push-0.span-2.align-top { position: fixed; } .no-parallax.has-offset.col.push-0.span-2.align-top { position: fixed; right: 20px; } .has-parallax.no-offset.col.push-0.span-3.align-bottom { padding-left: 30%; } Best! Marius
  • Page reload on mobile rotation?

    8
    0 Votes
    8 Posts
    208 Views
    mariusjopenM
    Dear @polczynski I also see an instagram thing active… Best! Marius
  • Footer covered by safari nav bar

    7
    0 Votes
    7 Posts
    685 Views
    mariusjopenM
    Dear @scottmacc You could give the footer a position absolute and bottom 20px. But that will have other consequences as well. Not very recommendable. A padding bottom is a good idea @edgrbnz Best! Marius
  • Google Map shortcode

    9
    0 Votes
    9 Posts
    1k Views
    mariusjopenM
    Dear @Emmanuel-Pevny we hope that helped with the API? Best! Marius
  • Imitating menu bar behaviour

    8
    0 Votes
    8 Posts
    449 Views
    mariusjopenM
    Dear @Benjaminb to understand: What exactly is the problem in this case now? :-D Best! Marius
  • Change the size of the title of the frontpage

    2
    0 Votes
    2 Posts
    67 Views
    mariusjopenM
    Dear @leo_sbn difficult to help without seeing a link to your website. But maybe that? .sitetitle{ position: fixed !important; left: 50% !important; top: 50% !important; } Best! Marius
  • Full Screen Image Text Overlay

    6
    0 Votes
    6 Posts
    752 Views
    mariusjopenM
    Dear @amc You create a textbox and style it with CUSTOM CSS to look how you want it to look like. Then you give it an opacity of 0 and pointer events none. You create a box which you give a class called: BUTTON. You use jQuery. When you click on BUTTON, a class gets added to the textbox which makes it opacity 1 and pointer events all. That was pretty rough but can give you an idea. It's not rocket-science :-) Best! Marius
  • 0 Votes
    8 Posts
    550 Views
    mariusjopenM
    Dear @Crossbow92 sweet! Happy to hear! Best! Marius
  • Align stack element to bottom of row

    2
    0 Votes
    2 Posts
    230 Views
    mariusjopenM
    Dear @12b that is not possible yet. The STACK feature is pretty limited. We are hoping to develop it further in the future. Best! Marius
  • Link video

    5
    0 Votes
    5 Posts
    230 Views
    arminunruhA
    no there isn't! i will think about it and might include it as a feature one day have a great day
  • Missing page transition for custom link

    3
    0 Votes
    3 Posts
    146 Views
    arminunruhA
    sry was on holidays, so how and where did you place that link do you have a link for me where i can test this? please send a email with the info to info@laytheme.com please also send a link to this topic so i know what the email is about
  • Eventbrite in LayTheme

    5
    0 Votes
    5 Posts
    194 Views
    arminunruhA
    hey, i see this is the example they gave on the website: <div id="example-widget-trigger"></div> <script src="https://www.eventbrite.com/static/widgets/eb_widgets.js"></script> <script type="text/javascript"> var exampleCallback = function() { console.log("Order complete!"); }; window.EBWidgets.createWidget({ widgetType: "checkout", eventId: "52766401728", iframeContainerId: "example-widget-trigger", iframeContainerHeight: 425, onOrderComplete: exampleCallback }); </script> <script src="https://www.eventbrite.com/static/widgets/eb_widgets.js"></script> put this part in "lay options" -> "custom css & html" -> "Custom <head> content" put this html in your page in the gridder via "+more" -> "+html": <div id="example-widget-trigger"></div> in "lay options" -> "custom css & html" -> "Custom <head> content" I would insert the other code like this, according to: http://laytheme.com/documentation.html#custom-javascript <script type="text/javascript"> var exampleCallback = function() { console.log("Order complete!"); }; laytheme.on('newpageshown', function(){ if( jQuery('#example-widget-trigger').length > 0 ){ window.EBWidgets.createWidget({ widgetType: "checkout", eventId: "52766401728", iframeContainerId: "example-widget-trigger", iframeContainerHeight: 425, onOrderComplete: exampleCallback }); } }); </script> good luck this is all because lay theme is has a frontend that is a javascript app .. sry for the late reply
  • Ordered LayTheme on Gumroad / no serial

    7
    0 Votes
    7 Posts
    216 Views
    arminunruhA
    Sorry that email landed in my spam, and sry for the late reply :/
  • [solved] SVG Transparency Issue

    9
    0 Votes
    9 Posts
    860 Views
    edgrbnzE
    Cool! Well yes that’s a thing. Since the pictures are transaprent the color is always there. That’s not a bug really. I had the same issue a while back. Glad it works now!
  • menu text -individual colour

    16
    0 Votes
    16 Posts
    580 Views
    edgrbnzE
    Glad it works 💐
  • tripadvisor widget

    6
    0 Votes
    6 Posts
    206 Views
    mariusjopenM
    Dear @dani we hope to release a PHP version of LayTheme. Then this will be possible :-D Best! Marius
  • Hover image text appear

    2
    0 Votes
    2 Posts
    144 Views
    mariusjopenM
    Dear @chrisaadland this can be achieved with jQuery. Not that difficult. You create a text box which is on opacity 0. Then with jQuery you add or remove a class which gives opacity 1 !important to this element. You can use the toggleClass function from jQuery. Best! Marius
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied

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