-
FAQ, how to make?
How do u make a FAQ section. I mean, I know how to write the questions and make the hyperlinks, but how do u make the hyperlink goto the answer someone down the page.
Take this site for example:
http://www.asedesigns.com/flashfaq.html
when u click on #2 for instance, it goes down the page automatically. how would I do that on my page?
Sorry if its a dumb questions :rolleyes:
-
<a href="#part1">Part 1</a> | <a href="#part2">Part 2</a>
Blah, blah...
<p id="part1">Part 1: Blah</p>
<p id="part2">Part 2: Blah</p>
-
[quote]
<a href="#part1">Part 1</a> | <a href="#part2">Part 2</a>
Blah, blah...
<p id="part1">Part 1: Blah</p>
<p id="part2">Part 2: Blah</p>
{/quote]
I thought it was:
<a href="#part1">Part 1</a> | <a href="#part2">Part 2</a>
Blah, blah...
<a name="part1">Part 1: Blah</a>
<a name="part2">Part 2: Blah</a>
-
You can use name, but ID is the newer way to do it. I don't like A also because on Mozilla it will change colour when you mouseover with CSS.