Good afternoon all,
I’m needing some help getting past the error on subject line. I thought creating an href with #__, and associating an id with each corresponding href # would fix it, but its still a no-go. Please help, thanks.
When you use an id, you have to make sure it doesn’t have spaces in between, or the HTML will think that it has 2 ids. Also make sure not to use # on the attribute like you did on this one:
<div id="#main"></div>
If you want to assign it to the div just use the word like this:
<div id="main"></div>
And then in your href you can use the # to link it to the div: