1. PROMO Get 60% OFF Lifetime Pro Membership & access all our Pro Divi Extensions, Divi Layouts, Divi AI Generator, Divi Block, etc.VIEW PRICING
BEST Divi Block - A revolutionary drag & drop tool to easily mix & match 960+ premade blocks (Light & Dark) to kick start your Divi site design. Special module designs are included as well. Also newly added AI generator & color.
Learn More About Divi BlockFree Version ~ 340+ Free Blocks

Solved Sticky header logo not linking

Discussion in 'Free Divi Community Forum' started by Carlos A Torres, Mar 25, 2024.

  1. Carlos A Torres

    Carlos A Torres New Member

    Anyone know how to add a link to a menu sticky logo? The main logo links back to the homepage just fine but the sticky logo, on scroll, loses the link. Thanks!
     
    1. PRO MEMBER PERKS Divi Block Pro - Premade team carousel design for your Divi site without using any plugins:View Demo
  2. Divi.Help

    Divi.Help Administrator
    Staff Member

    Most likely it's because it's hidden behind the placeholder. Try the below CSS in Divi > Theme Options > Custom CSS:
    Code:
    .et_pb_sticky_placeholder {
        pointer-events: none!important;
    }
     
  3. Carlos A Torres

    Carlos A Torres New Member

    Thank you but that did not work. I've tried a couple of different pieces of code, both in the Theme CSS and in the Menu Advanced CSS and nothing is working.
     
    1. PRO MEMBER PERKS Divi Block Pro - Powerful Divi header builder for you to mix & match premade header design, mobile menu & more:Learn More
  4. Divi.Help

    Divi.Help Administrator
    Staff Member

    Perhaps a z-index issue. Kindly share your URL.
     
  5. Carlos A Torres

    Carlos A Torres New Member

    1. PRO MEMBER PERKS Divi Ultimate Header Plugin - Custom Divi Builder header on desktop + default slide in / fullscreen menu on mobile:Learn More
  6. Divi.Help

    Divi.Help Administrator
    Staff Member

    Looks like the issue is caused by your CSS content logo image. You may try the below CSS in Divi > Theme Options > Custom CSS:
    Code:
    .et_pb_menu__logo {
        content: '' !important;
    }
    .et_pb_sticky .et_pb_menu__logo img {
        content: url(/wp-content/uploads/2023/09/BullseyeStrategyLogo.svg) !important;
        filter: none !important;
    }
     
  7. Carlos A Torres

    Carlos A Torres New Member


    That worked perfectly. Thank you so much!
     
    1. PRO MEMBER PERKS Divi.Help Layout AI Generator - Try the power of AI to generate a custom Divi layout for you:Try Now
  8. Ikonix

    Ikonix New Member

    I had the same issue and this also worked perfectly for me! Thank you!