Howdy, @DanteCampbell! Thanks for writing in…when you say that your anchor links aren’t working, I’m assuming you mean the hash links on the page you provided above? So all the red links under the sections like “Internet,” “Accounts,” “Equipment,” et cetera, correct? If that is the case, I have gone ahead and setup a test on my local install using hash links, and things are working as expected for me. I did notice some things on your page though:
- I see that for each of your links, the
href
is set to something like #Q1.1
, but I do not see a corresponding value of Q1.1
set as an id
on the appropriate Element you want to link to. Were these id
s present before the update? They will need to be set for these hash links to work.
- I would recommend as a general best practice for these hash links to use a format more akin to
Q1-1
, where you replace any special characters with a dash. I believe that certain characters such as a period are technically allowed, but they have to be escaped when referenced in certain ways (e.g. \.
), so to avoid any potential confusion or issues, I would recommend keeping it cleaner with the dash.
If you could let us know about #1 above, please do as things seem to be working here on my end, and the absence of your id
values would make sense as to why these aren’t working. Of course, if they were present before the update but got removed somehow, we would want to know about that to look into any potential issues. Thanks!