Page 1 of 1
This html code needs help
Posted: 2005-02-11 12:37pm
by Superman
How can I add the code into this to change its color?
This code ---> <h2><center><A HREF="
http://bozzanova55.tripod.com/">Test</A></center></h2>
how would I put something like this into it ---><FONT COLOR="#0000FF"> </FONT><BR>
Posted: 2005-02-11 12:43pm
by CDS
Code: Select all
<h2><center><a href="http://bozzanova55.tripod.com/" style="color: #0000FF">Test</A></center></h2>
Posted: 2005-02-11 12:44pm
by Superman
Thank you, sir! *salutes*
Posted: 2005-02-11 12:45pm
by CDS
Superman wrote:Thank you, sir! *salutes*
*nods head slightly*
Posted: 2005-02-11 12:51pm
by Superman
Oh CDS, now what if I want to put a picture in there to make it the link?
Posted: 2005-02-11 12:59pm
by CDS
Just as easy
Code: Select all
<h2><center><a href="http://bozzanova55.tripod.com/"><img src="yourimagehere.jpg" /></a></center></h2>
If you want to get rid of that annoying border around it, just use this code instead:
Code: Select all
<h2><center><a href="http://bozzanova55.tripod.com/"><img src="yourimagehere.jpg" border="0" /></a></center></h2>