malihu
Forum Replies Created
-
Forum: Plugins
In reply to: [Page scroll to id] Fails to scroll in Divi on mobileHello and sorry for the late reply. The issue is that the note section is hidden on mobile. When a block is hidden the page does not scroll to it. The CSS causing this is this one:
@media only screen and (max-width: 767px) {
.et_pb_column_41, .et_pb_column_42 {
background-image: radial-gradient(ellipse at center, #3e005b 28%, #1a0023 100%);
display: none !important;
}
}You can fix this by either removing the
display: none !important;part or by overwriting in your additional CSS like this:@media only screen and (max-width: 767px) {
.et_pb_column_41, .et_pb_column_42 {
display: block !important;
}
}Let me know 🙂
Forum: Plugins
In reply to: [Page scroll to id] Scroll to fails inside tabsYes, there are workarounds, like using the “selectors are excluded” option field but I’d need to see your page in order to help. Can you post your page/site url?
Forum: Plugins
In reply to: [Page scroll to id] Scroll to offset problemSure. Please check the offset option info here:
https://manos.malihu.gr/page-scroll-to-id-for-wordpress/#plugin-settings-offset
Let me know if you need more help
Forum: Plugins
In reply to: [Page scroll to id] Plugin causes Site Editor/Page Editor to flashThanks a lot for the feedback. I’ll check it investigate further and post here any updates.
Forum: Plugins
In reply to: [Page scroll to id] Plugin causes Site Editor/Page Editor to flashOK. Have you set a “Highlight selector(s)” in plugin options? If not, can try a non-existing one like:
.nothingSave changes, test and let me know
Awesome, Glad I helped 🙂
Indeed, it’ll overshoot the amount of images stacked on top of each other, before masonry does its thing. The only way to overcome this (since you already have plugin’s options to auto-correct scroll enabled) is exactly what you did, i.e. set a height value for the masonry container.
Keep in mind that this will happen with or without smooth scrolling.
You could also try to give a small delay when scrolling from/to different pages and see if it fixes the issue without having to set a fixed height (this depends on how the masonry script works):
Go to plugin settings and set a value like
500to “delay for scrolling to target on page load” field. Save changes and test with/without the fixed height.Hello,
This sounds normal, as not having a fixed height will overshoot page scroll (this will happen with or without the plugin). Although I’m not sure which page to check in your site(?)
Forum: Plugins
In reply to: [Page scroll to id] Conflict with Feed Them Social PluginYou’re welcome 🙂
Forum: Plugins
In reply to: [Page scroll to id] Conflict with Feed Them Social PluginHello,
You need to exclude the “Feed Them Social” plugin links from “Page scroll to id”:
Go to “Page scroll to id” settings and add the following at the end of the “selectors are excluded” field value:
, .fts-instagram-wrapper aSave changes, test and let me know
Forum: Plugins
In reply to: [Page scroll to id] Scrolling function not working properlyAlso, can you keep “Append the clicked link’s hash value to browser’s URL/address bar” option disabled?
Forum: Plugins
In reply to: [Page scroll to id] Scrolling function not working properlyYou can add it there so we can check it. You could also add it to Appearance > Customize > Additional CSS.
Forum: Plugins
In reply to: [Page scroll to id] Scrolling function not working properlyYou could also try adding the following to your CSS to adjust the titles gap:
#our_services h2.elementor-heading-title,
#core h2.elementor-heading-title{
padding-top: 60px;
}Forum: Plugins
In reply to: [Page scroll to id] Scrolling function not working properlyCan you try something first?
Go to “Page scroll to id” settings, disable “Append the clicked link’s hash value to browser’s URL/address bar” option and save changes.
Test and let me know
Forum: Plugins
In reply to: [Page scroll to id] Scrolling function not working properlyHello,
There’s another script in your page/theme that readjusts page scrolling everytime you scroll the page. You can test this by simply scrolling the page and see it readjust to the section (i.e. snapping the section to the top).
Is there a way to disable this?