I am using Sites (which I assume is very similar to Hub) to create a web site and I ran into a problem of referencing a specific section on a different page.
In one of the child pages, I created an anchor for a specific section by adding <div id="section"> in the text box using html editing. On the same child page, I can add a link to this section by using <a href="#section">. However, I can't find a way to refer to this anchor if I am on a different page.
For example, if the link to the child page is <a href="#/site_name/pages/childpage">, I've tried many different url format but none of them works:
<a href="#/site_name/pages/childpage#section">
<a href="#/site_name/pages/childpage/#section">
<a href="#/site_name/pages/childpage%23section">
<a href="#/site_name/pages/childpage%2F%23section">
Have anyone succeeded in doing this?
Any help is appreciated! Thanks!