View Full Version : graphics links


pippin_is_luvly
02-18-2003, 04:15 PM
Hi

I've checked all of my CSS and other page settings codes, they all specify the color i want to appear around my links but the graphic links (that say "pippin, you, etc, leaving, x") are still purple around the outside when viewed, and blue when not.
the webpage is at http://pipcurlylocks.tripod.com

Here's my code:

<html>
<head>
<TITLE>CURLYLOCKS *</TITLE>
<script language='javascript'>
setInterval("window.status=' '",5);
</script>
<STYLE type="text/css">
<!--
BODY {
scrollbar-face-color:#272D2D;
scrollbar-highlight-color:#272D2D;
scrollbar-3dlight-color:#823C3C;
scrollbar-darkshadow-color:#272D2D;
scrollbar-shadow-color:#272D2D;
scrollbar-arrow-color:#823C3C;
scrollbar-track-color:#272D2D;
}
BODY, P, TD, li {
font-family:Verdana, Arial;
text-align: justify;
line-height:11px;
font-size: 10px;
color:#FFFFFF;
font-weight:none;}
A:link{color:"#FFFFFF";text-decoration:none;cursor:default;}
A:visited{color:"#FFFFFF";text-decoration:line-through;cursor:default;}
A:active{color:"#FFFFFF";text-decoration:none;cursor:default;}
A:hover{color:#FFFFFF;text-decoration:underline overline;cursor:default;}
-->
</STYLE>
<STYLE type="text/css"> BODY { cursor: crosshair; } </STYLE> </head>
<body bgcolor="#272D2D">
<table border="0" Cellpadding=3 cellspacing=3 height="389px" width="995px">
<tr>
<td height="424px" width="995px" background="maintest.jpg" colspan=2>
</td>
</tr>
<td valign="top" Bgcolor="#272D2D" Bordercolor="823C3C" width="335"><center><a href="pippinmenu.html" target=content><img src="pipbut.jpg" hspace=5 vspace=5></a><a href="youmenu.html" target=content><img src="youbut.jpg" hspace=5 vspace=5></a><a href="etcmenu.html" target=content><img src="etcbut.jpg" hspace=5 vspace=5></a><a href="leavingmenu.html" target=content><img src="leavingbut.jpg" hspace=5 vspace=5></a><a href="inlinetest.html" target=content><img src="xbut.jpg" hspace=5 vspace=5></a></center></td>
<td width="600" Bgcolor="#272D2D"><center><img src="contentbut.jpg"><br>
<iframe FRAMEBORDER="0" width=600
height=400 src="inlinetest.html"
name=content></iframe>
</td>
</tr>
</table>
</table>

</body>
</html>

gotfaith3
02-18-2003, 04:51 PM
okay so what are you trying to do???

epolady
02-18-2003, 05:00 PM
There shouldn't be any quotations in CSS at all. Try removing the quotations from your link attributes.

pb&j
02-18-2003, 08:39 PM
You may be able to control the BORDER of a linked image and fix your CSS section a bit like so...


<style type="text/css">
BODY {
scrollbar-face-color:#272D2D;
scrollbar-highlight-color:#272D2D;
scrollbar-3dlight-color:#823C3C;
scrollbar-darkshadow-color:#272D2D;
scrollbar-shadow-color:#272D2D;
scrollbar-arrow-color:#823C3C;
scrollbar-track-color:#272D2D;
cursor: crosshair;
}
BODY, P, TD, li {
font-family:Verdana, Arial;
text-align: justify;
line-height:11px;
font-size: 10px;
color:#FFFFFF;
font-weight:none;}
A {color:#FFFFFF;
text-decoration:none;
cursor:default;}
A:visited{text-decoration:line-through;}
A:hover{text-decoration:underline overline;}
A IMG {border-color:#FFFFFF;}
</style>