View Full Version : HTML TAG
LinkinTheory
05-04-2004, 07:51 PM
Does anyone know the HTML tag that will make links look like normal text and take that blue border off images when you are using them to make a link?
elie2
05-05-2004, 12:24 AM
Making links look like normal text is all resolved through your CSS tags, so run a search for that, or check out http://lissaexplains.com for a quick and easy tutorial.
As for taking the blue border off images that are hyperlinked, simply make sure you turn the border completely off, as follows:
<a href="linkhere.php"><img src="img_adress_here.php" border="0"></a>
Enjoy. ;)
Mr. Benzedrine
05-05-2004, 05:37 PM
Im trying to think, ill get back to you
LinkinTheory
05-05-2004, 07:58 PM
Originally posted by elie2@May 4 2004, 08:24 PM
Making links look like normal text is all resolved through your CSS tags, so run a search for that, or check out http://lissaexplains.com for a quick and easy tutorial.
As for taking the blue border off images that are hyperlinked, simply make sure you turn the border completely off, as follows:
<a href="linkhere.php"><img src="img_adress_here.php" border="0"></a>
Enjoy. ;)
Thanks, Elie2. Any relation to the first one? :P
elie2
05-06-2004, 12:11 AM
Originally posted by LinkinTheory+May 5 2004, 07:58 PM--></span><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (LinkinTheory @ May 5 2004, 07:58 PM)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin--elie2@May 4 2004, 08:24 PM
Making links look like normal text is all resolved through your CSS tags, so run a search for that, or check out http://lissaexplains.com for a quick and easy tutorial.
As for taking the blue border off images that are hyperlinked, simply make sure you turn the border completely off, as follows:
<a href="linkhere.php"><img src="img_adress_here.php" border="0"></a>
Enjoy. ;)
Thanks, Elie2. Any relation to the first one? :P [/b][/quote]
First Elie? Hehe.
SargeTron
05-10-2004, 07:16 PM
i want to make a way where you can check say, downloads, then click download, and youll get a generated .zip or .rar file with your selected downloads in it. any help???
d0dGy MiKE
05-16-2004, 10:46 AM
for that you will need to use CSS you put something like the following:
<style type='text/css'>
a:link {color:Black; font-size:12px; text-decoration:none;}
a:hover {color:Red; font-size:12px; text-decoration:underline;}
</style>
obviously change all the details necessary. a:link stands for normal unclicked links, a:hover stand for when you put the mouse over a link and it changes.
if you want all images to not have a border (instead of having to put <img src='pic.gif' border='0'> all the time) also add this on a separate line between the <style> tags
img { border: 0px; }
Powered by vBulletin® Version 4.2.0 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.