How to Create a Blurry Header & Glowing Hover Effect in Elementor - Easy Wordpress Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ธ.ค. 2024

ความคิดเห็น • 7

  • @ANIVERSE248
    @ANIVERSE248 28 วันที่ผ่านมา

    thanks for the resources you have super charged our productivity

  • @mohammedbello3866
    @mohammedbello3866 2 หลายเดือนก่อน +3

    You are such an amazing person. May the Lord continue to bless you.

  • @DMLeBeau
    @DMLeBeau 2 หลายเดือนก่อน

    I love it. I tried it with my menu which has a dropdown. Only the first line on the dropdown appears. Maybe I need to tweak things around

    • @the_mig
      @the_mig  2 หลายเดือนก่อน +1

      The dropdown is being hidden inside the header because of the second container , the one that you put as overflow hidden ..
      Some menu widgets are coded so that the drop down is an extra div and not as a popup, so would have to play with different widgets ..
      The reason it’s set to hidden is to stop the glow going beyond the middle header container ..

  • @Shootfix_AS
    @Shootfix_AS 25 วันที่ผ่านมา

    On the mobile version, the header isn’t blurry. It appears blurry in the browser version, but not on the phone. Any idea how to fix this? 🫣

    • @the_mig
      @the_mig  24 วันที่ผ่านมา +1

      err.. ...
      oh wait.. my bad..
      I didnt put all support for the blur.. this new code should fix it.
      in the header container there is the custom css,
      Replace it with this:
      /* css goes in .rebootheader */
      selector {
      --blob-size:200px;
      }
      selector .rebootcontent{
      -webkit-backdrop-filter: blur(10px); /* Safari support */
      backdrop-filter: blur(10px);
      height: 100%;
      }
      selector .rebootglow{
      width: var(--blob-size);
      height: 80%;
      left: calc(50% - calc(var(--blob-size)/2));
      filter: blur(40px);
      z-index: -1;
      opacity: 0;
      transition: opacity 300ms 300ms linear;
      }
      selector .rebootfakeglow {
      visibility: hidden;
      z-index: -1;
      height: 100%;
      }

    • @Shootfix_AS
      @Shootfix_AS 24 วันที่ผ่านมา

      @ working! Thank you so much!!!☺️