Robert Wattner
Forum Replies Created
-
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Error Se muestran menus@kike0128 Hi, sorry I have been so busy lately. I took a look at your site.
The top light blue top bar above the header doesn’t have my plugin applied to it so I don’t know why it’s taking longer to load. Possibly the theme you are using, I can’t be sure. If you want that top bar to be sticky only then you don’t need my plugin for only that. My plugin doesn’t actually make the header sticky, it only changes the (already)sticky header once the user scrolls. There is a setting for the section under advanced > motion effects > sticky > set to “top” to just make it sticky.The main white header just seems to be sticking to the top before the top bar is off of the page. Maybe try setting the scroll distance to at least the height of the top section if not more.
I noticed you aren’t using any of the background color, shrink, or any other of the plugin features. If you just want it to be sticky use the same elementor settings that I mentioned above.Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] shrink transition not smoothHi, I see that transition duration is set correctly for height and background color etc. but isn’t being applied. A few things can cause this.
Caching, code minification, and speed plugins can break the code.
Not having a set height can cause this problem because if the height is not specified then the transition aimed at height has no value to use. I hope that makes sense.I always set my header min-height to around 80px-100px so you know where you’re starting from when deciding a shrink height. Same thing with the logo. If you have set values you can better predict the results and values needed to achieve desired shrink heights. I usually shrink the header and logo both about 20% so they look symmetrical while shrinking.
Let me know if this helps
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Error Se muestran menusHi, I’ll take a look tomorrow and see if we can get it figured out for you.
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Change text color on scroll not workingThanks for adding this
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Nav menu dropdown color on scrollAwesome to see you guys helping each other! It really helps me out too being as busy as I have been lately.
IE isn’t supported by elementor or anybody for anything really. I’ll double check edge and opera to make sure it works and write new code if needed.
This is the code I use, hopefully it helps you out.
.she-header .elementor-image img { content:url('http://mashfolio.com/wp-content/uploads/2019/06/mashfolio-logo-light-blue-e1561216083245.png') !important; width: auto !important; /* height of initial logo */ height: 60px !important; transition: height 0ms ease-in-out 500ms !important; -moz-transition: height 0ms ease-in-out 500ms !important; } /*firefox fix*/ .she-header .elementor-image { content:url('http://mashfolio.com/wp-content/uploads/2019/06/mashfolio-logo-light-blue-e1561216083245.png') !important; background-size: contain; width: auto !important; /* height of replacement logo */ height: 50px !important; transition: height 0ms ease-in-out 500ms !important; -moz-transition: height 0ms ease-in-out 500ms !important; } .she-header .elementor-element .elementor-widget-container img { transition: height 0ms ease-in-out 500ms !important; -moz-transition: height 0ms ease-in-out 500ms !important; }Hi, yes, I am adding this feature in a future update and I remember having to solve a Firefox issue. I’ll find the code I use and get back with you here tomorrow.
Hi, I just checked your site and the mobile header remains light blue when I scroll back to the top. I tried it on several devices and browsers. Maybe try clearing your cache or try it on another device please. I hope that works
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] page jumps when scrolling down@meisterleise do you have a link to the page you are having problems with?
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] page jumps when scrolling downI have been getting this issue a lot from people lately. I think elementor has made some changes that are overwriting my plugin settings. On another site I added some custom css to the header section with !important tags and it seemed to work. This is the code I used on that site.
.she-header-transparent-yes {
position: absolute !important;
}.she-header {
top: 0 !important;
}I hope this can help others as well. Sorry for the recent troubles with the plugin. I’m looking into a fix for the next update.
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] page jumps when scrolling downCan you try this code
.she-header, she-header-transpaeent-yes { position: relative !important; top: 0 !important; }Do you have a link?
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Dynamic Fields / ContentThis is the first request I’ve gotten for this feature but I can definitely look into adding it for future updates
I don’t think it will work with two. The plugin applies CSS classes to the header and styles them that way. They would both get the same classes so they would be styled the same. I might be able to add support for multiple headers activated on the same page but right now, unfortunately, it’s not supported.