Anchor links to other page

Hi everyone,

I have buttons that go to another page and then are supposed scroll to the appropriate section but they aren’t going to the sections.

Buttons links are: /about/#section-name

Row id on other page is: section-name

I would like to post the link securely.

thanks

Hi @mrdfrost,

Thanks for reaching out.

The issue is you’re adding IDs multiple times (one for desktop and one for mobile). IDs are unique should only exist once and that’s part of standard. Instead of hiding your sections from devices, hide its row so you only need one ID for that section.

Example,

[section id="david'] [row 1 (hidden from mobile)] [row 2 (hidden from desktop)] [/section]

This is just a pseudo-explanation, but the concept is the same. Use your section to wrap the entire content regardless of device, then use row to display content specific to devices.

Thanks!

1 Like

that solved it, thank you for the speedy response!

You are most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.