XF 2.1 Using anchor links, something I need to do different in XF Help pages?

Kevin

Well-known member
I'm not sure if I have not had enough coffee today or, perhaps, too much but something that should be a 'no-brainer' is giving me grief tonight. 🤔

In short, I'm creating an FAQ help page for our photography forum and I'm using a standard HTML anchor like <a href="#singlein">Single In...</a> but they don't seem to be working when using URLs like https://cameraderie.org/help/faq/#wordsnowords.

Am I doing something dumb or is something in XF2 causing my grief? Suggestions appreciated either way. :)
 
If you're expecting the page to jump the where the Words/No Words row is, then you need to have an id attribute in that location too, e.g.
HTML:
<a href="#wordsnowords" id="wordsnowords">Words/No Words</a>
 
If you're expecting the page to jump the where the Words/No Words row is, then you need to have an id attribute in that location too, e.g.
HTML:
<a href="#wordsnowords" id="wordsnowords">Words/No Words</a>
Oh, dang it, I hang my head in shame for forgetting the basics. I'm going to blame this one on too much coffee, it was inevitable that a daily 24oz cup was going to eventually have some reaction. 🤣

Thanks :)
 
Top Bottom