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

  1. Home
  2. Need Custom Coding for Lay Theme? Find 3rd Party Developers here.
  3. Custom Coding for blur effect

Custom Coding for blur effect

Scheduled Pinned Locked Moved Need Custom Coding for Lay Theme? Find 3rd Party Developers here.
12 Posts 4 Posters 400 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    sibyllehornung
    wrote on May 29, 2021, 1:59 AM last edited by
    #1

    Hi, I have a tiny coding request.

    This is my website:
    www.sibyllehornung.com

    I would like to add a blur effect over my buttons
    "Work", "Else", "Shop", and "Information".

    The blur effect should be 0.8px like
    filter: blur(0.8px);

    • With hover, blur should go away, and when a page is clicked, the blur effect of that page should go away, too.
      [Similar to this page: http://kaiblamey.com/selectedwork/
      but in my case, the blur effect of a page would disappear when a page is activated.]

    Both on Mobile + Desktop.

    Feel free to reach out also per email:
    work@sibyllehornung.com

    R 1 Reply Last reply Nov 8, 2021, 8:10 AM
    1
    • K Offline
      K Offline
      kalamakumaran
      wrote on May 29, 2021, 1:23 PM last edited by
      #2

      Hi,

      i sent you an email ;)

      1 Reply Last reply
      2
      • R Offline
        R Offline
        Richard
        Global Moderator
        wrote on May 31, 2021, 3:49 AM last edited by
        #3
        @sibyllehornung @kalamakumaran

        Cool! best of luck, thank you for using Lay Theme! 🌝


        1 Reply Last reply
        0
        • S sibyllehornung
          May 29, 2021, 1:59 AM

          Hi, I have a tiny coding request.

          This is my website:
          www.sibyllehornung.com

          I would like to add a blur effect over my buttons
          "Work", "Else", "Shop", and "Information".

          The blur effect should be 0.8px like
          filter: blur(0.8px);

          • With hover, blur should go away, and when a page is clicked, the blur effect of that page should go away, too.
            [Similar to this page: http://kaiblamey.com/selectedwork/
            but in my case, the blur effect of a page would disappear when a page is activated.]

          Both on Mobile + Desktop.

          Feel free to reach out also per email:
          work@sibyllehornung.com

          R Offline
          R Offline
          Rogue
          wrote on Nov 8, 2021, 8:10 AM last edited by
          #4

          @sibyllehornung Hello, I see you have made it in the meantime. Would you like to share your experience?

          1 Reply Last reply
          0
          • R Offline
            R Offline
            Richard
            Global Moderator
            wrote on Nov 8, 2021, 8:31 PM last edited by
            #5

            Dear @Rogue

            The user @sibyllehornung is applying the CSS 'filter' effect.

            e.g

            .custom-class{
            filter: blur(0.7
            px
            );
            

            https://www.w3schools.com/cssref/css3_pr_filter.asp


            Best wishes & have a great day 🌻
            Richard
            R 1 Reply Last reply Nov 9, 2021, 6:48 AM
            0
            • R Richard
              Nov 8, 2021, 8:31 PM

              Dear @Rogue

              The user @sibyllehornung is applying the CSS 'filter' effect.

              e.g

              .custom-class{
              filter: blur(0.7
              px
              );
              

              https://www.w3schools.com/cssref/css3_pr_filter.asp


              Best wishes & have a great day 🌻
              Richard
              R Offline
              R Offline
              Rogue
              wrote on Nov 9, 2021, 6:48 AM last edited by
              #6

              @Richard said in Custom Coding for blur effect:

              Dear @Rogue

              The user @sibyllehornung is applying the CSS 'filter' effect.

              e.g

              .custom-class{
              filter: blur(0.7
              px
              );
              

              https://www.w3schools.com/cssref/css3_pr_filter.asp


              Best wishes & have a great day 🌻
              Richard

              Thank you Richard. 👌😀
              Only it does not work when I go with the mouse over the text in the menu bar. Sorry, I don't have that much CSS experience yet.

              1 Reply Last reply
              0
              • R Offline
                R Offline
                Richard
                Global Moderator
                wrote on Nov 10, 2021, 1:27 AM last edited by Richard Nov 9, 2021, 8:29 PM
                #7

                No worries @Rogue 🌝
                I believe you mean when 'hover' ing over the text.

                https://www.w3schools.com/cssref/sel_hover.asp

                Therefore the previous code would be changed to:

                .custom-class:hover {
                filter: blur(0.7
                px
                );
                

                (Note: the class custom-class must be defined by you/attached to the menu-items, maybe i mislead with that sorry - let me know if you need clarification )


                Best wishes & have a great day ✨
                Richard
                R 1 Reply Last reply Nov 10, 2021, 8:07 AM
                0
                • R Offline
                  R Offline
                  Rogue
                  wrote on Nov 10, 2021, 7:55 AM last edited by Rogue Nov 10, 2021, 2:55 AM
                  #8
                  This post is deleted!
                  1 Reply Last reply
                  0
                  • R Richard
                    Nov 10, 2021, 1:27 AM

                    No worries @Rogue 🌝
                    I believe you mean when 'hover' ing over the text.

                    https://www.w3schools.com/cssref/sel_hover.asp

                    Therefore the previous code would be changed to:

                    .custom-class:hover {
                    filter: blur(0.7
                    px
                    );
                    

                    (Note: the class custom-class must be defined by you/attached to the menu-items, maybe i mislead with that sorry - let me know if you need clarification )


                    Best wishes & have a great day ✨
                    Richard
                    R Offline
                    R Offline
                    Rogue
                    wrote on Nov 10, 2021, 8:07 AM last edited by
                    #9

                    @Richard perfekt! It works.
                    next question .
                    When hovering, the blur should disappear, and when clicking on a page, the blur effect of that page should also disappear.

                    1 Reply Last reply
                    0
                    • R Offline
                      R Offline
                      Richard
                      Global Moderator
                      wrote on Nov 14, 2021, 10:39 PM last edited by
                      #10

                      Dear @Rogue

                      Great to hear that it's working ✅
                      If you wish to customise further you will have to research the CSS personally as my role as Forum Moderator must be focused on Lay Theme Bugs/Issues.

                      Between Google & Lay Theme's Documentation page you will have no trouble 🌝
                      https://laytheme.com/documentation.html#custom-css-styling

                      Happy to help you in the right direction though!

                      "When hovering, the blur should disappear,"

                      Look into either display:none or opacity:0
                      I would suggest opacity as this wont remove the content and maintain design, it will only make the words disappear ( opacity:0 ).


                      Best wishes & have a great day 🌻
                      Richard
                      R 1 Reply Last reply Nov 15, 2021, 5:27 AM
                      0
                      • R Richard
                        Nov 14, 2021, 10:39 PM

                        Dear @Rogue

                        Great to hear that it's working ✅
                        If you wish to customise further you will have to research the CSS personally as my role as Forum Moderator must be focused on Lay Theme Bugs/Issues.

                        Between Google & Lay Theme's Documentation page you will have no trouble 🌝
                        https://laytheme.com/documentation.html#custom-css-styling

                        Happy to help you in the right direction though!

                        "When hovering, the blur should disappear,"

                        Look into either display:none or opacity:0
                        I would suggest opacity as this wont remove the content and maintain design, it will only make the words disappear ( opacity:0 ).


                        Best wishes & have a great day 🌻
                        Richard
                        R Offline
                        R Offline
                        Rogue
                        wrote on Nov 15, 2021, 5:27 AM last edited by
                        #11

                        @Richard
                        Hello Richard,

                        thank you very much for your efforts. It has worked wonderfully.

                        1 Reply Last reply
                        0
                        • R Offline
                          R Offline
                          Richard
                          Global Moderator
                          wrote on Nov 15, 2021, 10:46 PM last edited by
                          #12

                          Great to hear @Rogue ! Best wishes ✨

                          1 Reply Last reply
                          0
                          Reply
                          • Reply as topic
                          Log in to reply
                          • Oldest to Newest
                          • Newest to Oldest
                          • Most Votes


                          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
                          S
                          Stanlouche
                          7 minutes ago
                          C
                          craigfeldspar
                          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