Bitcoin Forum

Bitcoin => Bitcoin Technical Support => Topic started by: TheBitMan on July 06, 2011, 07:22:50 PM



Title: Banner help
Post by: TheBitMan on July 06, 2011, 07:22:50 PM
How would I add a link to a banner I make in photoshop?


Title: Re: Banner help
Post by: Alex Beckenham on July 06, 2011, 07:27:35 PM
How would I add a link to a banner I make in photoshop?

Image files (jpg, gif, png) don't actually have links built into them. The link is added later by HTML code (or on forums by BB code).

So, save your banner as an image, then upload it somewhere to the web.

Then you can use code like this example, to show it on the forum:

Code:
[url=http://example.com][img]http://example.com/images/mybanner.jpg[/img][/url]

Or, if you're putting it in a web page as HTML, use something like:

Code:
<a href="http://example.com"><img src="http://example.com/images/mybanner.jpg"></a>

-Alex


Title: Re: Banner help
Post by: TheBitMan on July 06, 2011, 07:33:54 PM
How would I add a link to a banner I make in photoshop?

Image files (jpg, gif, png) don't actually have links built into them. The link is added later by HTML code (or on forums by BB code).

So, save your banner as an image, then upload it somewhere to the web.

Then you can use code like this example, to show it on the forum:

Code:
[url=http://example.com][img]http://example.com/images/mybanner.jpg[/img][/url]

Or, if you're putting it in a web page as HTML, use something like:

Code:
<a href="http://example.com"><img src="http://example.com/images/mybanner.jpg"></a>

-Alex

thanks