Hi Osgood nd anyone who can help me. I created folders for WOMEN, MEN etc and re-saved the files in the particular folder. The link that works is as follows:
http://www.cjdesignandconsulting.com/Zunieast/Women/Moccasins.html
and below is the code. I have been unable to find information on how the "a href link should look in the code so that I can get the link above.
<li class="dropdown"><a href="WOMEN.html" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">WOMEN<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li class="active"><a href="WOMEN/Moccasins.html">Moccasins</a></li>
<li><a href="WOMEN/Boots.html">Boots</a></li>
<li><a href="WOMEN/Slippers.html">Slippers</a></li>
<li><a href="WOMEN/Sandals.html">Sandals</a></li>
</ul>
</li>
Thanks.
Carolyn
Well that's where you have a problem.
Any file directly in the site root folder the links would be as below: (please use lower case letters rather than UPPERCASE, its ugly and annoying. Make sure your folder names are also lower case)
<li class="active"><a href="woman/moccasins.html">Moccasins</a></li>
<li><a href="woman/boots.html">Boots</a></li>
Any file within a folder in the site folder the links would be:
<li class="active"><a href="../woman/moccasins.html">Moccasins</a></li>
<li><a href="../woman/boots.html">Boots</a></li>
These days I tend to use absolute urls, in php include files, for links if I have a series of folders which contain files.
I thought DW managed the link for you to be honest but its a long time since I used the site file panel but I'm pretty sure it does.
If you create a file in the site root and then drag it into a folder in the site panel DW should give you a prompt to update the links and once they are updated they should look like the above with the ../ infront of them.