View Full Version : help...


cute_angel10490
07-07-2003, 09:59 AM
here's part of my code:


</head>
<style type="text/css">
a {font-family:Verdana; font-size:11pt; color:#D8415F; cursor:w-resize; text-decoration: none;}
a:visited {color:#f5c4df;}
a:active {color:#ffffff;}
</style>
</head>
<body background="nav.jpg" bgproperties="fixed">
<a href="content.htm" target="frame3">Home</a>
<br>
<a href="me.htm" target="frame3">Me</a>
<br>
<a href="you.htm" target="frame3">You</a>
<br>
<a href="site.htm" target="frame3">Site</a>
<br>
&nbsp;
<center>
| <a href="filename.mp3">Play</a> | <a href="nomusic.htm">Stop</a> |
</center>


on where it says | Play | Stop |, is it possible to make the text smaller without having the other links be smaller too?

MaGiCSuN
07-07-2003, 01:08 PM
</head>
<style type="text/css">
a {font-family:Verdana; font-size:11pt; color:#D8415F; cursor:w-resize; text-decoration: none;}
a:visited {color:#f5c4df;}
a:active {color:#ffffff;}

.music A:link { font-size: 1px }
</style>
</head>
<body background="nav.jpg" bgproperties="fixed">
<a href="content.htm" target="frame3">Home</a>
<br>
<a href="me.htm" target="frame3">Me</a>
<br>
<a href="you.htm" target="frame3">You</a>
<br>
<a href="site.htm" target="frame3">Site</a>
<br>

<center>
| <a href="filename.mp3" class="music">Play</a> | <a href="nomusic.htm" class="music">Stop</a> |
</center>

the parts that are bold are used to make the links a different color, differen size etc. just change "size" to the size of your choice. Because in the stylesheet they are named .music i have to add into the link class="music" so that the links will get the information from the right part of the stylesheet.

Love,
Mirna

cute_angel10490
07-07-2003, 11:49 PM
i tried the code you gave me, it doesn't work

pb&j
07-08-2003, 12:28 AM
try changing this...
.music A:link { font-size: 1px }

to this...
.music a {font-size: 1px;}

or this...
a.music {font-size: 1px;}

cute_angel10490
07-08-2003, 12:38 AM
thanks!! the second one worked! :)