Skip to content

General Discussion

A place to talk about anything Lay Theme related
4.8k Topics 20.5k Posts
  • Primairy menu centered on the left

    5
    2
    0 Votes
    5 Posts
    146 Views
    W
    @Baptiste said in Primairy menu centered on the left: } You are the best! Thanks :)
  • Same Mobile display for Tablet display

    6
    0 Votes
    6 Posts
    143 Views
    RichardR
    Dear Karim @karimus1888 Cool, that link works now :) To clarify: is the question that you want to have the Tablet layout on Mobile? OR how to have the Menu displayed in the centre on older devices ( it should ).. Best Richard
  • Menu Point (Desktop Version) in other corner

    6
    1
    0 Votes
    6 Posts
    123 Views
    L
    It worked thank you!
  • Vertical Scroll for Carousel Plugin

    3
    0 Votes
    3 Posts
    350 Views
    H
    @Richard-K Thank you Richard! I'll look into this.
  • Hover effect from project thumbnails on image

    8
    0 Votes
    8 Posts
    819 Views
    RichardR
    Dear @anamsp If you need the colour overlay on hover it gets a bit more tricky as this is a <span> overlay - to get all the effects without the colouring: .special:hover{ filter: blur(2px); -webkit-filter: blur(2px); -moz-filter: blur(2px); -ms-filter: blur(2px); -o-filter: blur(2px); opacity: 0.5; transition: all 400ms ease-out; } When you want the image to act the same as project Thumbnails when hovered > right-click & give it a 'custom class' in my example i gave it special The above code can be added to 'CSS' in customizer or through ' Lay Options - Custom CSS & HTML' Hope this helps @anamsp & have a wonderful day, sorry for the delay! Best Richard
  • Front page - Google description

    2
    2
    0 Votes
    2 Posts
    64 Views
    RichardR
    Dear @AJ If i'm not mistaken this is your site title / tagline - These can be changed in the left hand admin menu > Settings > General > -- Hope this helps! :) Best wishes Richard
  • Browser design problems.

    2
    1
    0 Votes
    2 Posts
    53 Views
    RichardR
    Dear @max_muster Have you since changed your menu layout, or still require help? i see that its been moved underneath the Banner. Best wishes Richard
  • responsive Menu always centered?

    5
    0 Votes
    5 Posts
    258 Views
    RichardR
    Dear Karim @karimus1888 Im having trouble accessing your site :) [image: 1614729390012-screen-shot-2021-03-03-at-12.55.52-pm-resized.png] Best Richard
  • Design customizer is not loading

    6
    0 Votes
    6 Posts
    193 Views
    RichardR
    Dear Michael @MickeyOne Cool! :) Happy that its working again and you can continue with your project! Best wishes Richard
  • Transition duration when navigating not working?

    4
    0 Votes
    4 Posts
    85 Views
    RichardR
    Dear @paulcalver Cool! :) glad that its fixed, thanks for providing a follow up / conclusion. Best Wishes Richard
  • Wrapping grid content in custom HTML divs

    2
    0 Votes
    2 Posts
    60 Views
    RichardR
    Hi @CaryA Just to be sure, am i right that you wish to keep the Grid but find a way to wrap it in a container <div> ? <div class="created-custom-container"> <div id="grid" class="grid"> </div> </div> Talk soon & best wishes :) Richard
  • This topic is deleted!

    1
    1
    0 Votes
    1 Posts
    5 Views
    No one has replied
  • site title doesn't costumize

    2
    0 Votes
    2 Posts
    31 Views
    RichardR
    Dear @axeldemarteau To be sure before progressing :) Wordpress, Lay Theme & Laytheme's Addons are all up to date ? Any Custom CSS or JS that may interfere is temporarily removed. Any third-party plugins de-activated to see if this resolves the issue. If using a WordPress Cache plugin, disable it or clear your cache. License key not activated - (in website blank situations or button not available) If your WordPress Dashboard shows a warning "PHP Update required" please update your PHP version in your webhost control panel. Additionally please take a look at https://laytheme.com/troubleshooting.html for known problems. Hope this helps & best wishes :) Richard
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • image size

    6
    0 Votes
    6 Posts
    298 Views
    M
    Thanks for the answer!!!
  • Sub menu for Polylang and for main menu

    5
    0 Votes
    5 Posts
    81 Views
    K
    Yeah I did it for the menu but itโ€™s more difficult with polylang. Do you have an idea?
  • 0 Votes
    5 Posts
    108 Views
    RichardR
    Dear @kl No worries :) Best of luck with the rest of your project! Richard
  • Mouse Pointer arrow to slide down

    2
    0 Votes
    2 Posts
    61 Views
    RichardR
    Dear Marco @Marcoyassas This may help :) https://stackoverflow.com/questions/12397287/change-cursor-when-div-scrolls-up-or-down I would start with that if possible Best wishes Richard
  • How do a multi language menu?

    4
    0 Votes
    4 Posts
    168 Views
    RichardR
    Dear @Elt01123 This is likely a setting of the Language plugin used where it will remove the current language. However this could be done with a custom menu link created in > Appearance > Menus > Choosing 'Custom Links'. The languages work by creating a copy of each page and setting a URL address that matches. in this case the URL: https://andreaguccini.com/it/homepage /it/ = italian There is also a: https://andreaguccini.com/en/homepage /en/ = English With this knowledge you can just create your own links to switch between English or Italian ( or any other language you have applied ) Hope this helps and have a wonderful day Richard
  • How to apply a background color in row gutters?

    2
    0 Votes
    2 Posts
    77 Views
    RichardR
    Dear @varina The Row gutters are Margin percentages that are applied to each row - If your 'Row Gutter' is set to 5% then each row will have a 'margin-bottom' of 5%. This unfortunately means that a row gutter is not a solid 'area' that can have a background colour applied to it. https://www.w3schools.com/css/css_margin.asp However from a design point of view there may be ways that you can trick this, one option being a 'border' https://www.w3schools.com/css/css_border.asp Here in this example i have set the row gutter to 0% but am using the border property to create a divide between rows - but the nice thing about a border is i can set a colour: [image: 1614383559921-screen-shot-2021-02-27-at-12.48.09-pm-resized.png] To make things easier - in the Gridder layout i right-clicked the row and gave it a class using - Edit HTML class & ID. I set the class to 'border_row_one'. With that i applied the Custom CSS: .border_row_one { border-bottom: 50px solid aqua; } You can use other CSS unit than 'px' like 'VH' (viewport height) https://www.w3schools.com/cssref/css_units.asp For more information on using Custom CSS within Lay Theme check out the documentation page: https://laytheme.com/documentation.html#custom-css-styling Hope this has helped point you in the right direction and have a wonderful day :) Richard

I also code custom websites or custom Lay features.
๐Ÿ’ฟ Email me 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