• Anonymous User 18304542

    (@anonymized-18304542)


    Awesome plugin! But the ‘Change logo back to full color’ after scroll doesn’t work whenever I use the white or black logo before scroll, on a transparent header before scroll and a white header after scroll. A bug maybe?

    Also, is there an option to change menu text color to any desired color after scroll?

    Will be waiting for updates because it is an awesome plugin so far!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Robert Wattner

    (@rwattner)

    Hi @timo7777 I’m glad you like the plugin so far and sorry about the bug. The latest release had a lot of changes. Are you using the site logo widget or the regular image widget? also, do you have a link to the page with the problem? I can write you some custom CSS until I can get the bug fixed.
    lmk thanks

    Thread Starter Anonymous User 18304542

    (@anonymized-18304542)

    Hi Robert, thanks for the quick reply!

    Yes, I’m using the site logo widget. I have tried the regular image widget and a third party logo widget from an Elementor addon plugin, but they didn’t make it work either.

    Basically trying to get the header working first before i start filling in the rest of the site, as it depends on the way the header will work. If it really isn’t too much work to write some custom CSS to make the magic happen, that would be awesome. But otherwise just keep me updated on the release of the bug fix, that’ll be fine too!

    link to the page: https://www.believersgoods.com/

    If you wish to conduct any further correspondence in private,
    feel free to contact me at [email protected]

    Plugin Contributor Robert Wattner

    (@rwattner)

    @timo7777 I found the bug in the code and fixed the problem. I just updated the plugin to 1.4.3. Let me know if this works for you. Please clear your site and browser cache. Lmk

    Plugin Contributor Robert Wattner

    (@rwattner)

    For your site here is some custom CSS that will change your link colors on scroll. I’ve included main, hover, and active link colors.

    Main color

    /* link color */
    .she-header .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item {
        color: #555555 !important;
    }
    /* link underline color */
    .she-header .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after {
        background-color: #555555 !important;
    }

    Hover color

    /* link hover color */
    .she-header .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:hover {
        color: #555555 !important;
    }
    /* link hover underline color */
    .she-header .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after {
        background-color: #555555 !important;
    }

    Active color

    /* active link color */
    .she-header .elementor-nav-menu--main .elementor-item.elementor-item-active {
        color: var( --e-global-color-primary ) !important;
    /* active link underline color */
    .she-header .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item.elementor-item-active:after {
        background-color: var( --e-global-color-primary ) !important;
    }
    /* var( --e-global-color-primary ) is your global "primary" color but can be replaced with any # or rgba color */
    }

    Just change the #555555 to whatever color you like. You can also control the underline color separately or set it the same color.
    If you switch from the “underline” pointer style let me know so I can send you the correctly modified code. Each pointer style has specific code.

    Hope this helps until I get the custom link color options built into the plugin. I’d really appreciate if your review reflected the bug being fixed for you. Thanks a lot

    Thread Starter Anonymous User 18304542

    (@anonymized-18304542)

    Thank you so much! The bug has been fixed and is working fine! Thanks for the CSS as well! Appreciate it

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Awesome, but there is a bug’ is closed to new replies.