PDA

View Full Version : Adding Hyperlinks


RCP
June 29th, 2011, 10:06 AM
When I post a URL somewhere where there is no editor options, how can I post it as a hyperlink?
I found this, (http://www.ironspider.ca/format_text/hyperlinks.htm) but I am clueless when it comes to code, i suppose I could figure it out though!

I looked for an extension for Chrome with no luck. Where I really want it is for when I post a link in something like a FB or blog comment, and don't want a big old ugly URL, I want it to "look pretty"! :rolleyes3:

See how I did it in Dave's countertop post? (http://www.facebook.com/remodelcrazy), I would have preferred, to see the complete process, check out Remodel Crazy. (http://www.remodelcrazy.com/forum/showthread.php?t=8141&highlight=concrete+counter+tops)

Thanks

dasein-ing
July 12th, 2011, 12:36 PM
Where are you trying to post the hyperlink? Unless there's an HTML option, you can't post one.

nEighter
July 12th, 2011, 05:14 PM
/\ where in the hyperlink is that guy from?

Go to TinyURL and get one from them.

Len
July 12th, 2011, 09:49 PM
Depending on where you are trying to post a link the site may or may not allow it. Many sites allow links even if there is no advanced editor included. Here is how you do it.

Here is a run down of HTML linking code.

<a href="url">Link text</a>
-
-
In your example it would be this:
<a href="http://www.remodelcrazy.com/forum/showthread.php?t=8141&highlight=concrete+counter+tops">to see the complete process, check out Remodel Crazy</a>
-
-
The text that displays (anchor text) is wrapped in the opening and closing <a></a> tag. The url that it links to is inside the opening a tag.
<a href="url">

More - http://www.w3schools.com/html/html_links.asp