How to make fine hyperlinks
[Deleted User]
Posts: 0 Many Grins
How do I make a hyperlink to a gallery without showing the hole URL. Example: I have a gallery with pics of the Blue Tit taken in the Danish nature reserve Vaserne and another gallery with my pics from Vaserne. In the "Caption" on every Blue Tit pic I want to place a link to the Vaserne gallery. I can do that by copying and showing the hole URL, but I would prefer a highlighted "Vaserne" (hyperlink) with a hidden URL. Can that be done?
0
Comments
You can place HTML in the caption using an <a href= statement.
For example:
<a href="https://jb-photos.smugmug.com/">Jørgen Bjerring's site</a>
https://www.w3schools.com/tags/att_a_href.asp
Musings & ramblings at https://denisegoldberg.blogspot.com
OMG it works. Thank you so much for your kind help.
Note it is also possible to support both nickname and custom domain name formats with the same link if you do it like this:
It's called a relative link, where the server portion is omitted. The browser will fill in the server portion for you based on how you got to the current page, so in my case this then will both support:
If you are explicit for the whole URL, and you use custom domains, it will force a switch to whichever you use.
PS. The span and color in mine just changes the link color, it and the corresponding termination of the span can be omitted, but thought it might be of interest.
Many thanks to you too. Your answer is very helpful .