|
Answer» how do I put link code in banner??
So when someone clicks on it, it GOES t o site??
[recovering disk space, attachment deleted by admin]ASSUMING that you are inserting the banner as an image, you can simply wrap the "img" tags with a link.
For example:
Code: [Select]<a href="http://www.example.com"><img src="yourimage.jpg"></a> If you WANT the banner to open in a new tab (which is what most BANNERS will do, you can set a target attribute like this:
Code: [Select]<a href="http://www.example.com" target="_blank"><img src="yourimage.jpg"></a>CHANGE img into
Code: [Select]<img src="yourimage.jpg" border="0">, so you won't get a blue line
|