View Full Version : help!!!


Miss_Thang
06-24-2004, 09:58 PM
just out of curiosity how do I change the color and take out the underline of my link. Umm...and where exactly would it go in my code. Here's the part that's activated that I want to change but don't know how :

<td bgcolor="#DBE2E8" width="200" ><font face="times new roman" size="3" color="#000000"><center><b>Aventura</b></center><center><b>Fans</b></center><center><b>site</b</center><center><b>www</b></center><a href="main.php" target="inlineframe"><center><b>main</b></center></a></font></td>

Hope some1 can help!! ;)

salomeyasobko
06-24-2004, 10:04 PM
put the CSS after the <head> tag of your coding put like this:

<html>
<head>
<style type="text/css">

CSS GOES HERE

</style>
<title> title </title>
</head>

check out Lissa's CSS tutorial for different link attributes- the links are the first thing on there:

http://lissaexplains.com/css.shtml

EDIT: but it would basically be this:

<style type="text/css">
A {color: #FFFFFF; text-decoration: none;}
</style>

edit the bold part

:)

Miss_Thang
06-24-2004, 10:31 PM
thnx soooo much!!!! got it ;)

salomeyasobko
06-25-2004, 02:55 AM
you're very welcome! i'm glad :)