Go Back   Free website templates > Web Template Help > Graphics
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read


Join now to share free website templates or post on the forum. If you have never been on a forum before read the FAQ. It's quick, easy and free to join!
Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-21-2008, 07:33 PM
Junior Member
 
Join Date: Aug 2008
Posts: 3
Giovanni is on a distinguished road
Default Trouble creating image link

I would like to create a image that I can give to webistes,blog users, etc to post, that will link back to my site. Does anyone have any advice on figuring out the code.
Reply With Quote
  #2 (permalink)  
Old 08-21-2008, 07:47 PM
Senior Member
 
Join Date: Apr 2008
Location: United Kingdom
Posts: 310
djwilson is on a distinguished road
Default

<a href="http://www.yourwebsitehere.co.uk" target="_blank"><img style="border: 0px solid ; width: 468px; height: 60px;" src="http://www.yourimagelinkhere.co.uk/i...x60mddlogo.gif" alt="Text here" />


you can changed the height and width depending on the size of your image
Reply With Quote
  #3 (permalink)  
Old 08-24-2008, 02:54 PM
Junior Member
 
Join Date: Aug 2008
Posts: 3
Giovanni is on a distinguished road
Default Tried It

<ahref="http://www.myspace.com/adsixx" target="_blank"><img style="border: 0px solid ; width: 300px; height: 300px;" src="http://i204.photobucket.com/albums/bb5/jkennedy_04/Alexis_Cover2tiny-1.jpg">

Didnt work. The picture shows up but it is not a link. This line also appears above the picture- ...http://www.myspace.com/adsixx" target="_blank">
Reply With Quote
  #4 (permalink)  
Old 08-24-2008, 03:03 PM
Senior Member
 
Join Date: Apr 2008
Location: United Kingdom
Posts: 310
djwilson is on a distinguished road
Default

Try this <a href="http://www.mobilediscodirectory.co.uk" target="_blank"><img style="border: 0px solid ; width: 468px; height: 60px;" src="http://www.mobilediscodirectory.co.u...x60mddlogo.gif" alt="Mobile Disco Directory" /></a>&nbsp;</p>
Reply With Quote
  #5 (permalink)  
Old 08-26-2008, 01:14 AM
ishkey's Avatar
Moderator
 
Join Date: Aug 2007
Location: North GA USA
Posts: 1,778
ishkey will become famous soon enough
Default

Giovanni code
HTML Code:
<ahref="http://www.myspace.com/adsixx" target="_blank"><img style="border: 0px solid ; width: 300px; height: 300px;" src="http://i204.photobucket.com/albums/bb5/jkennedy_04/Alexis_Cover2tiny-1.jpg">
 
the way it should be <a href (need a space) and you need to close with </a>
HTML Code:
<a href="http://www.myspace.com/adsixx" target="_blank"><img style="border: 0px solid ; width: 300px; height: 300px;" src="http://i204.photobucket.com/albums/bb5/jkennedy_04/Alexis_Cover2tiny-1.jpg">
</a>
 
djwilson had it right
__________________

Consultant - Programmer - WebMaster
cleandeck - lawn mower undercoating
wilmargraphite - graphite lubricants
Reply With Quote
  #6 (permalink)  
Old 08-26-2008, 02:48 PM
Junior Member
 
Join Date: Aug 2008
Posts: 3
Giovanni is on a distinguished road
Default Works now

Thanks that works great. Do you know how i can post this code on my site for others to copy and put on their sites? I have seen other sites that have a box and the code is inside similar to what Ishkey posted.
Reply With Quote
  #7 (permalink)  
Old 08-26-2008, 04:30 PM
ishkey's Avatar
Moderator
 
Join Date: Aug 2007
Location: North GA USA
Posts: 1,778
ishkey will become famous soon enough
Default

see if this works

Code:
 
<h3>Like our MySpace Page?</h3>
 
<p><img src="http://i204.photobucket.com/albums/bb5/jkennedy_04/Alexis_Cover2tiny-1.jpg" style="float: left; margin-right: 0.5em;" width="200" height="200" border="0" alt="Alexis Cover" />Like our site? Please let others know by displaying this icon.<br/> Simply copy and paste the code snippet below onto your webpage:</p>
 
<textarea cols="90" rows="4" name="Sitemap Builder" style="font-size: 11px">
&lt;a href=&quot;http://www.myspace.com/adsixx&quot; target="_blank">&lt;img src=&quot;http://i204.photobucket.com/albums/bb5/jkennedy_04/Alexis_Cover2tiny-1.jpg&quot;
width=&quot;200&quot; height=&quot;200&quot; border="0" alt=&quot;Alexis Cover&quot;&gt;&lt;/a>
</textarea>
__________________

Consultant - Programmer - WebMaster
cleandeck - lawn mower undercoating
wilmargraphite - graphite lubricants
Reply With Quote
  #8 (permalink)  
Old 08-26-2008, 08:48 PM
ishkey's Avatar
Moderator
 
Join Date: Aug 2007
Location: North GA USA
Posts: 1,778
ishkey will become famous soon enough
Default

or try this one, it has a "select all" feature
HTML Code:
 
<html>
<!-- Created on: 8/26/2008 -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>link back</title>
</head>
<body> 
<script language="Javascript">
<!--
function selectAll(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
}
//-->
</script>
 
<p><img src="http://i204.photobucket.com/albums/bb5/jkennedy_04/Alexis_Cover2tiny-1.jpg" style="float: left; margin-right: 0.5em;" width="200" height="200" border="0" alt="Alexis Cover" /><h3>Like our MySpace Page?</h3><p>Like our site? Please let others know by displaying this icon.<br/> Simply copy and paste the code snippet below onto your webpage:</p> 
<form name="pick"> 
<a href="javascript:selectAll('pick.select1')">Select All</a><br>
<textarea name="select1" cols="90" rows="4" name="Sitemap Builder" style="font-size: 11px">
&lt;a href=&quot;http://www.myspace.com/adsixx&quot; target="_blank">&lt;img src=&quot;http://i204.photobucket.com/albums/bb5/jkennedy_04/Alexis_Cover2tiny-1.jpg&quot;
width=&quot;200&quot; height=&quot;200&quot; border="0" alt=&quot;Alexis Cover&quot;&gt;&lt;/a>
</textarea>
</form>
</body>
</html>
 
__________________

Consultant - Programmer - WebMaster
cleandeck - lawn mower undercoating
wilmargraphite - graphite lubricants
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 06:42 AM.



mouseover mouseover mouseover