Robert Wattner
Forum Replies Created
-
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Hide logo until you scroll down@melanie71 Hi, did this work for you?
I see, well, I’m happy to kind of help haha. I’m going to mark this as resolved. Let me know if there’s anything else I can do. Have a nice week
@mfxw Hi, have you had any luck?
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Hide logo until you scroll downOk, actually, I found a client site where I did exactly this. So I got the code I used from there.
On the logo, under advanced tab, in CSS Classes field, add “logo” (not .logo, no period)
Then, add this code to the site wherever you keep custom css/* SHOW LOGO ON SCROLL */ .logo img { opacity: 0; -webkit-transition: opacity 0.4s ease-in-out; -o-transition: opacity 0.4s ease-in-out; transition: opacity 0.4s ease-in-out; } .she-header .logo img { opacity: 1 !important; }You might want to turn off the “Shrink Logo” and just set the logo to a smaller size.
Let me know if this works for you
- This reply was modified 4 years, 3 months ago by Robert Wattner.
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Hide logo until you scroll downHi, sorry for the delay. Been very busy here lately.
I actually have some custom css that I wrote to do this for the pro version of my plugin. The code allows you to simply add a class or id of “show” to show on scroll or “hide” to hide. This will work with anything in the header once the code is in place.
I am answering this on my phone right now but I’ll be on my computer to get that code in just a little bit and will post the code with instructions below.
Thanks for your patience!Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Sticky Header Transparency Not WorkingHi, sorry to hear you’re having problems. Is it just the transparency that isn’t working? Do the header and logo still shrink or does it seem like all of it has stopped working? Have you tried deactivating all plugins except elementor and my plugin?
Do you have a link? Lastly, have you enabled the elementor experiment “scroll snap”?
Thanks, we’ll figure it out@trinto np problem at all. I hope you figure it out.
Well I’m happy you found it and also happy it wasn’t my fault haha. Best of luck with that!
Hi, sorry you are having problems. Does this problem still happen when sticky header effects is uninstalled? I ask because I’ve seen a lot of problems with menu lately. Particularly mega menus.
@rckelsey Here is the css for active links
/* ACTIVE LINK COLOR */ .she-header .elementor-item.elementor-item-active { color: RED !important; } /* ACTIVE POINTER COLOR */ .she-header .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after, .she-header .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:before, .she-header .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after { background-color: RED !important; } /* ACTIVE FRAMED POINTER COLOR */ .she-header .e--pointer-framed .elementor-item:before, .she-header .e--pointer-framed .elementor-item:after { border-color: RED !important; }Just change “RED” to whatever color you want.
Let me know if you need anything else@rckelsey yes I can provide the code needed for active as soon as I get back to my computer.
Forum: Reviews
In reply to: [Sticky Header Effects for Elementor] Great plugin with minor issues@007me Hi, I was wondering if you might be kind enough to adjust your review.
We found out that it wasn’t the plugin causing the jump to the left.
Also, the limitations you were facing are limitations with elementor free version vs pro version.
I would really appreciate if your review reflected this and the help I provided. It really helps me a lot.
Thank you very much!@mhogas the plugin code has been changed as per your recommendation. The change will be included with the WP v5.9 compatibility release and will be pushed to the repo after normal bug testing.
Thanks again for your input with this.Hi, I’m sorry you are having problems but this is not the elementor support forum. This is support for my plugin, sticky header effects for elementor which is an add-on for elementor. I don’t work for them, I’m completely separate.
Looking at your GitHub post I see
Isolating the problem
This bug happens with only Elementor plugin active (and Elementor Pro).
This rules out my plugin if it’s not even installed.You can find their support forum here
https://wordpress.org/support/plugin/They also have their own support page here
https://elementor.com/support/Sorry I can’t be of more help with their plugin. This is just the wrong support forum is all, it’s ok. I hope they can help you figure this out and I wish you good luck!
I think I accomplished what you are trying to achieve. It’s a little difficult to explain so I exported the header section as a template.
https://drive.google.com/file/d/1bF1jWvopSIvrNdn3RvMWBAJU6sUxG8CP/view?usp=sharingHopefully you can use that template to help you out.
The blue top “above header” section has a min-height currently set to 40px, this is important because the css on the outermost section is set to translate up -40px. So if you change the min-height of the blue section then you also need to change that css to match.
Other than that you should be able to just replace columns or elements with what’s in your current header.
If you need the blue above header section to be a different height for mobile/tablet just let me know and I can write you a media query.
Hope this helps, let me know if you need more help.