Computer Hope

Software => Computer software => Topic started by: Wyngs on August 07, 2012, 04:06:02 AM

Title: Image as a clickable link using BB code?
Post by: Wyngs on August 07, 2012, 04:06:02 AM
Unable to figure out a way to make an image a clickable link using BB code. Is it possible?

I tried this:

http://blah blah[/img]]blah blah (http://blah blah)
(http://blah blah [img)

Thanks in advance for any info.[/b]
Title: Re: Image as a clickable link using BB code?
Post by: soybean on August 09, 2012, 08:14:07 AM
You need to use
Code: [Select]
[img] [/img] tags around the whole code string.  See http://en.wikipedia.org/wiki/BBCode for more detail on this; go down to the code example that displays the house image.
Title: Re: Image as a clickable link using BB code?
Post by: Wyngs on August 09, 2012, 04:26:41 PM
Many thanks, Soybean.
Title: Re: Image as a clickable link using BB code?
Post by: quaxo on August 10, 2012, 12:34:08 AM
Think this is what you want:
Code: [Select]
[url=http://www.linkurl.com/][img]http://www.imageurl.com/image.jpg[/img][/url]
Produces this clickable image with all the stuff properly inserted:
(http://www.computerhope.com/toptitle.jpg) (http://www.computerhope.com/)
Title: Re: Image as a clickable link using BB code?
Post by: Wyngs on August 14, 2012, 11:29:47 PM
Thanks guys.