Robert Wattner
Forum Replies Created
-
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Logo shrinks too muchAlso, you might want to set your image size to “full” and align in to the left. You might need to set that column horizontal alignment to “start”. That should keep the logo on the left while changing size.
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Logo shrinks too muchHi, this is a known bug that came up recently. I’m working on fixing it by releasing the pro version of the plugin.
In the meantime, you can use some CSS to control the different sizes of your logo. Turn off the shrink logo option in the plugin and add this CSS to the site.
.she-header-yes .elementor-widget-theme-site-logo.elementor-widget-image { /* LOGO TRANSITION */ transition: all 0.4s ease-in-out !important; } @media (max-width: 1025px) { .she-header .elementor-widget-theme-site-logo.elementor-widget-image { /* TABLET SIZE */ width: 120px !important; } } @media (max-width: 768px) { .she-header .elementor-widget-theme-site-logo.elementor-widget-image { /* MOBILE SIZE */ width: 120px !important; } }Just change “120px” to whatever size you need. I hope this helps, sorry for the trouble.
Hi,
I’ve looked at your site and I don’t see a sticky header at all. Do you have a page with my plugin active? Maybe a temporary test page so I can see what’s happening?
You can try adding this to the custom CSS on the section that is not acting correctly. This is just a guess though.
selector, .she-header selector, .she-header-yes selector { width: 100vw !important; }Let me know if that works, or if you have a different link I can look at.
The link says not found.
Edit: I figured it out, you added text to the end of the link. I’ll take a look and get back with you.
- This reply was modified 3 years, 6 months ago by Robert Wattner.
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Does not support flex box containers?No problem, I’m glad you enjoy it. Be sure to check out the pro version when it comes out soon. Tons more features! Just trying to figure out the best way to do a soft launch to keep inevitable bugs as best contained as possible.
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] Does not support flex box containers?Hi,
Yes I do. It was supported and working fine but elementor made some changes. It still being beta status this isn’t unexpected. I’ve actually got it fixed and ready to go. I think I will be releasing the pro version of my plugin and that might require some edits to this free version before I can update.
Once that is sorted I’ll release an update which includes the fix for current beta container support.Np, sounds good. Good luck
That code needed to go in the customizer or wherever it can be applied to the entire site. I guess if you are using that header as a template on the entire site it should be fine. I don’t think that’s the best place for it.
I think something happened to your header settings somehow. Are the display conditions still set correctly? Have you cleared cache?
This isn’t technically an issue with the plugin and it’s 12:30am here. I’ll have to look into this more tomorrow. Also, containers are still in beta and I can’t fully support that yet unfortunately.
If the code I suggested is removed, and the problem persists, then I don’t think it’s the code. Non existent code can’t cause problems. Possibly something else was accidentally changed?
Where did you paste the code? It shouldn’t have anything to do with the header at all.
Does the header come back if you remove the code?
If you remove the code does the header return?
Np, try using this custom css in the customizer or wherever you keep your global CSS.
/* PASSWORD PROTECTED PAGE STYLING */ .post-password-required { padding: 200px 20px; background: var( --e-global-color-primary ); color: #F9F9F9; } .post-password-required .post-password-form p { justify-content: center; }You can get rid of everything but the padding if you want. I just thought it looked nice this way. Or, change the background and text color as you like. Note that background color is your global primary color set in elementor. If you change it in elementor it will change here too. I thought it being connected to the footer color would be nice.
Let me know if that helps.- This reply was modified 3 years, 6 months ago by Robert Wattner.
- This reply was modified 3 years, 6 months ago by Robert Wattner.
Hi,
Do you have a link to the page?- This reply was modified 3 years, 6 months ago by Robert Wattner.
Forum: Plugins
In reply to: [Sticky Header Effects for Elementor] menu item colors not changingHi,
I was able to use this css to change your menu color..she-header .premium-menu-link { color: red !important; }Just change red to whatever color you like.
If you want a transition, then I would use this code.premium-menu-link { transition: color 0.4s ease-in-out !important; } .she-header .premium-menu-link { color: red !important; }I hope this helps.