Skip to content

General Discussion

A place to talk about anything Lay Theme related
4.2k Topics 17.6k Posts
  • 0 Votes
    21 Posts
    133 Views
    RichardR

    Dear @NAS

    No worries & best wishes with the website -it looks great :)

    Sincerely
    Richard

  • 0 Votes
    4 Posts
    24 Views
    RichardR

    Thanks @fr ! :)

  • Anchorscroll Space Top

    3
    1 Votes
    3 Posts
    51 Views
    paulstolleP

    Dear @Richard,

    thanks a lot for your answer. I already found those setting deep in the javascript file behind LayTheme. Thought I could adjust things with CSS only but couldn't find any solution … Maybe somebody else could help?

    All the best,
    Paul

  • Overlay Text over the whole project

    4
    0 Votes
    4 Posts
    49 Views
    RichardR

    Dear @daxmann

    Yes this is possible :)
    It could be done using a 'stack' element or you could add the text via <html> in the +more - +html. Then you could add some Custom CSS to style it over the page.

    On the documentation page is some help regarding CSS:
    https://laytheme.com/documentation.html#custom-css-styling

    Or contact me via 'chats' and i can help you as best i can :)

    Talk soon
    Richard

  • Carousel doesn't work

    4
    0 Votes
    4 Posts
    22 Views
    RichardR

    Dear @Violeta

    Have sent you a message via 'chats' :)

    Talk soon
    Richard

  • Disable Logo in Header Menu until you scroll

    7
    0 Votes
    7 Posts
    40 Views
    D

    This is perfect. Thank you so much!

  • mouse roll over colour - custom css

    4
    0 Votes
    4 Posts
    27 Views
    RichardR

    Dear @markHighLow

    No worries :)
    Best wishes for the rest of your project!

    Richard

  • Text fixed moving when loading page

    2
    0 Votes
    2 Posts
    37 Views
    RichardR

    Dear @gridch

    Position:fixed is the correct way to go i think in your case,
    The fixed text being a part of the fullscreen slider, am i correct that it has the id:

    #dalt

    ?

    You will need to test obviously but you could load this CSS command earlier by adding it > Lay Options > Custom CSS & HTML >

    Custom <head> content or Custom HTML at top:

    <style> #dalt { position:fixed !important; } </style>

    Need to test, and see! :)
    Best
    Richard

  • When hover different typography

    2
    0 Votes
    2 Posts
    99 Views
    RichardR

    Dear @gridch

    If you just want 'Interiors' to remain normal you can target it with one of its data attributes :

    [data-title="Interiors"]:hover { font-style: normal !important; }

    Hope this helps & best wishes
    Richard

  • Lay Theme X Woo Commerce

    8
    1 Votes
    8 Posts
    125 Views
    RichardR

    Dear @julia-i

    Armin is still woking hard on it, no big updates to report unfortunately :)

    Best
    Richard

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • Intro .svg overlay

    3
    0 Votes
    3 Posts
    69 Views
    Hayo GebauerH

    @Richard
    works! Thanks very much, have a nice day!

  • Altenative Glyphs in Site Title or Categories

    2
    0 Votes
    2 Posts
    20 Views
    RichardR

    Dear @roschki

    It is possible to access Alternate Glyphs -
    This is using a particular 'stylistic set' of a typeface e.g 'ss02' ( stylistic set #2'

    Im pretty sure in this Thread it is discussed :)
    http://laythemeforum.com:4567/topic/917/activate-styllistic-sets

    This thread may also help, unsure
    http://laythemeforum.com:4567/topic/6206/webfont-issue-2-fonts-working-fine-3rd-one-doesn-t

    Hope this helps & best wishes!
    Richard

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    9 Views
    No one has replied
  • 0 Votes
    5 Posts
    53 Views
    RichardR

    Dear @paulcalver

    Awesome! :)
    Thanks for the update and best of luck with your project

    Richard

  • change text content on hover

    4
    0 Votes
    4 Posts
    310 Views
    RichardR

    Dear Jeff @jeff

    Please remove your current CSS with the 'Before {content}' setup - Its not working properly :)

    Its not targeting your link <a href#>
    it's just inserting the text "REALISATRICE" " :before" the 'Class .mb' (this element being a parent of the <a> element) .

    After removing it, please insert the following code into your 'Custom <head> Content' area:

    <script> window.laytheme.on("newpageshown", function(layoutObj, type, obj){ jQuery('[data-id=73]').hover(function(){ jQuery(this).text("REALISATRICE"); }, function() { jQuery(this).text("MYRIAM BOU-SAHA"); }); jQuery('[data-id=75]').hover(function(){ jQuery(this).text("ILLUSTRATEUR"); }, function() { jQuery(this).text("VINCENT DUPERRAY"); }); jQuery('[data-id=76]').hover(function(){ jQuery(this).text("GRAPHISTE"); }, function() { jQuery(this).text("CAROLE GENIN"); }); jQuery('[data-id=77]').hover(function(){ jQuery(this).text("MOTION DESIGN"); }, function() { jQuery(this).text("GUILLAUME COQUARD"); }); jQuery('[data-id=77]').hover(function(){ jQuery(this).text("MOTION DESIGN"); }, function() { jQuery(this).text("CÉLESTIN JEAN-CHARLES"); }); jQuery('[data-id=78]').hover(function(){ jQuery(this).text("DESIGN & ARCHITECTURE"); }, function() { jQuery(this).text("LES MARSIENS"); }); jQuery('[data-id=79]').hover(function(){ jQuery(this).text("DESIGN OBJET & ESPACE"); }, function() { jQuery(this).text("GEOFFREY PAUCHARD"); }); jQuery('[data-id=12]').hover(function(){ jQuery(this).text("REALISATRICE"); }, function() { jQuery(this).text("STEPHANIE WEERTS"); }); }); </script>

    When using Laytheme and JS/jQuery we need to remember two things as stated in the documentation:
    https://laytheme.com/documentation.html#custom-javascript

    You need to wrap your code in a 'newpage event' and also the common abbreviated '$' for jQuery should be changed/written as the full 'jQuery'.

    In the code above we want to target the link itself and change it, not another element - Every link <a> has its own 'data-id' so we can use that to target. E.g

    [data-id=75]

    If you need help with how to inspect your pages HTML structure and find Elements and Attributes etc,
    On the documentation page is help with using the browsers "development tools'
    https://laytheme.com/documentation.html#custom-css-styling

    .
    .
    Screen Shot 2021-03-11 at 4.16.10 PM.png

    .
    .
    .

    I hope this helps Jeff & best of luck - Google is your friend and also the Documentation page :)

    Best wishes
    Richard

  • 0 Votes
    9 Posts
    546 Views
    RichardR

    Dear @fr

    With Project Thumbnails within the Element Grid this is possible - With standard images not.
    The image dimensions are set normally and not with this 'PH' padding.

    So Image <img> being 100% width and its parent container controlling its dimensions:

    E.g

    .parent-container{ width:48%; } img{ width:100%; height:auto; }

    Hope this answers your question :)

    Best wishes
    Richard

  • Understanding question about menu structure.

    2
    0 Votes
    2 Posts
    30 Views
    RichardR

    Dear @MickeyOne

    Recently a 'Thumbnail Grid Filter' was built in by Armin, so the function of clicking categories and seeing the related projects is there:

    http://laythemeforum.com:4567/topic/6408/category-filters-with-lay-theme-version-3-6-1?_=1615336804678

    The difference in your case is how to use an Image instead of Text. Some trickery would be needed either with JQuery to go in and replace the Text with an Image.

    A crude hack would be to place an Image over the Text so the user would not see it -The issue would be if you are able to click the Text underneath then

    It would be a little difficult, the option is not built in at the moment sorry Mickey.

    Best
    Richard

  • Drawing Canvas

    4
    0 Votes
    4 Posts
    51 Views
    felix_rabeF

    @josehoudini I did not add anything. I think you have to give it a height, maybe use "browser height for row height" in the grinder with the html code.

  • Fade text on scroll

    2
    0 Votes
    2 Posts
    30 Views
    felix_rabeF

    @paulcalver try some jQuery like in this example:

    http://jsfiddle.net/e84enbf2/

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