![]() |
|
Quick HTML Question. - Printable Version +- Forums (https://forums.ragol.co.uk) +-- Forum: Banter (https://forums.ragol.co.uk/forumdisplay.php?fid=5) +--- Forum: General Chat (https://forums.ragol.co.uk/forumdisplay.php?fid=25) +--- Thread: Quick HTML Question. (/showthread.php?tid=10596) |
Quick HTML Question. - Ivan - 19-02-2007 I need to link pictures from imageshack and have the coding for them all to be 320 x 240 pixels. Doesn't have to contain a link to the actual size image. Anyone know how? Quick HTML Question. - pink - 19-02-2007 So basically you're asking how to make a thumbnail image that links to the full-sized image. Since you're using Imageshack they usually provide thumbnail HTML samples, but if not then here's the general idea coding-wise. <a href="FULL IMAGE URL" target="_blank"><img src="THUMBNAIL OR FULL IMAGE URL" border="0" height="240" width="320"/></a> Just for the record though, Imageshack provides the HTML for linkable thumbnail versions of your image, I just checked.
|