#Nav tag reference with subdirectories
7 messages · Page 1 of 1 (latest)
can someone help me with nav tag references, the collection pages are in a subdirectory and i had to put the whole path for any files outside of the subdirectory to make it work, but i dont think that is the most efficient way. Any tips?
Nav tag reference with subdirectories
i dont know
./ At the beggining should work
If you still need help... I think "../index.html" should work fine. Your accessing files outside the pages directory, that's what this ../ does. It will tell the link to start outside of the folder you are in. You can even stuck them up like "../../../". And lastly "./" is used if you want to access files in the same directory.
So it would look something like
<a href="../index.html">Home</a>
<a href="./collection1.html">Collection 1</a>
<a href="./collection2.html">Collection 2</a>
<a href="./collection3.html">Collection 3</a>
<a href="../forms.html">New Video</a>