Forum Moderators: open
Just follow the following steps
1) Write the text you want to link
for example CLICK HERE TO VIST NEXT PAGE
2) Just select this whole text and from bottom Properties menu
3) Choose to insert hyperlink , browse to the page you want to link to
The problem you getting might be of many reasons ..so its very difficult to say.
I hope following these steps would help you for sure
Welcome once again :)
Go to View->Code And Design (not just Design.)
The window should split in two - you will see CODE in the top pane, DESIGN in the bottom.
Look for the code like this:
<a href="link-to">link</a>
When you create a link in Dreamweaver, it will initially create a local path, a path that is only present on your computer for the link. That is, for "link-to" above it may say
file:///C¦/some-directory/page.htm
You need to remove the part before "page.htm" and it should work:
<a href="page.htm">link</a>
This will be true of all images and links you create in design mode - check your code window before uploading to your server.