Viewing using details text widget and

using details text widget and



User: spyboynola 9 years ago
I can not get the links I put in to work properly. I have read and tried everything I learned on everweb code box site, but am unable to work it out. here is the code I am using for links
<a href="#" target="_blank">https://jazz.tulane.edu</a>.
All links go to an external site in a new window. Now it just goes back to the same page!
this is the page all the links are on
http://www.nolamusicguides.com/full/links.html
this is the first page of site
http://www.nolamusicguides.com/full/welcome.html
I know it is something to do with absolute and relative paths but i cannot get my head around it. Thanking in advance
User: James G. 9 years ago
It looks like you forgot part of the structure. Try-
<a href="https://jazz.tulane.edu" target="_blank">https://jazz.tulane.edu</a>

The way you have it links to http://www.nolamusicguides.com/full/links.html#, notice the "#" at end.

w3school links
User: Roddy 9 years ago
The hash sign (#) is used to represent the URL so the link should be like this...

<a href="https://jazz.tulane.edu" target="_blank">Link Text</a>

Replace Link Text with words that let the visitor know where they are going when they click the link.

-------------------------------
Roddy

Website: http://everwebwidgets.com
Contact: http://everwebwidgets.com/ewWidgets-home/contact.html
NOTE: I am an EverWeb user and NOT affiliated with EverWeb! Any opinions expressed in this forum are my own.
✔ Best Answer  


Post Reply
You must login or signup to post.