I had some issues with this too and I got it working when removing all special characters. I don’t know if this is the issue but it’s worth trying
Try:
Change: #arrange-a-funeral
To: #arrangeafuneral
Check this topic where I added a generic script to smooth scroll to section if you want:
I struggled a bit too with this and apparently, this isn’t allowed in Divhunt (yet) so you need to add some JS that loads AFTER the page is done loading and then perform the “scroll to section”
Say you want to link from page 1 to #id on page 2:
Create link on page1 and create ID on div on page 2 as usual and add this JS code to the “Body End” in “Custom Code”:
<script>
function smoothScrollTo(element, duration = 1200) {
const targetPosition = element.getBoundingClientRect().top;
const…
Let me know if it works
1 Like