Robert Wattner
Forum Replies Created
-
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Missed console.log()The plugin has been updated
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Missed console.log()Thanks, will do.
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Mobile submenu not on topNo problem, happy to help. Nice try raising the specificity using additional classes. Good luck!
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Mobile submenu not on topHi, I’ve seen this same situation with jet menu as well. This css in the elements plugin is the problem
@media (max-width: 1024px) .elementskit-menu-offcanvas-elements { height: 100%!important; padding-bottom: 10px; }That height needs to be 100vh to solve your issue. Unfortunately, since they have important in their code it probably can’t be overwritten. If you knew what file that code was in then you could manually edit their plugin but I can’t tell in the dev tools. It looks like all the css has been combined into a single file. Probably a performance/cache thing.
If you can get this code to work then it should be fixed
@media (max-width: 1024px) .elementskit-menu-offcanvas-elements { height: 100vh !important; }I’m sorry I can’t help futher. Good luck with this!
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Plugin settings not displayedNo problem. Happy to help!
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Plugin settings not displayedHi,
the plugin settings can be found in the elementor page editor by clicking a section/container and going to it’s advanced tab. There you will see a sticky header effects section.
If you don’t see the settings there then there is some issue I can look into further.
I hope this helps.
Im sorry, that says wrong password. You can email me the password if you don’t want it to be public on here.
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Change color of title on scrollHappy to help!
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Change color of title on scrollOh, almost forgot, you might want to add this code to make the header sticky initially so it doesn’t jump.
.she-header-yes { position: fixed; top: 0; }That’s your decision though, just thought I might suggest it.
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Change color of title on scrollThanks, that helped a lot.
This css should work for you
.she-header-yes .elementor-heading-title { transition: all 0.4s ease-in-out; } .she-header .elementor-heading-title { color: red !important; }Just change the transition and color to whatever you like. I hope this helps.
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Change color of title on scrollDo you have a link to the site? How are you putting the title in the header?
Do you have a link to the site? I’d have to see what’s going on.
Hi again,
I was wondering if you’ve figured this out?
I see that code works for you. I’ll mark this resolved.
Btw, if you just need a class toggle for CSS, elementor has that built in. If you use the header > advanced > motion effects > effects offset, the class .elementor-sticky–effects is toggled at that set px offset from the top. It does exactly what you’re using my plugin for.
Hi,
my plugin doesn’t have options for menu items color change. It looks like the header is full width. Try this css
.she-header-yes { width: 100% !important; }