View Full Version : Another font question


SweetSisterMary
06-26-2004, 05:04 PM
I keep trying to change my font in the linked CSS I have but when I look at it in Notepad it doesn't seem to change.

This is the code I have:

A:link { text-decoration: none; color:#6E0005; }
A:visited { text-decoration: line-through; color:"white"; }
A:active { text-decoration: underline overline; color:"black"; }
A:hover { text-decoration: underline overline; color:"black";


body
{ background-color: #CFC4BE;
background-position:top left;
background-attachment:scroll;
font-family:sans-serif;
color: #000000 ;
letter-spacing: 0pt;
font-weight:normal;
font-size:10pt;
scrollbar-face-color : #FFFFFF;
scrollbar-arrow-color : #FFFFFF;
scrollbar-track-color : #FFFFFF;
scrollbar-shadow-color : #000000;
scrollbar-highlight-color : #000000;
scrollbar-3dlight-color : #FFFFFF;
scrollbar-darkshadow-color : #FFFFFF; }

The index page that refers to it is:

<html>
<head>
<title>temp</title>

<LINK REL=STYLESHEET TYPE="text/css" HREF="http://www.joliesgirl.com/style.css">
<SCRIPT LANGUAGE="JavaScript"></SCRIPT>
</head>
<body bgcolor="#CFC4BE">

<p align="center">
<table border="0" bgcolor="#CFC4BE" width="602">
<tr><td>
<center>
<img src="http://www.joliesgirl.com/currentlayout/beyondborders.jpg" border="0">
</td></tr>

<tr><td>
<p align="center"><a href="http://www.joliesgirl.com/aboutme/aboutme.html">Inmate #1</a> | <a href="url.html">Angelina</a> | <a href="http://www.joliesgirl.com/fics/archivesindex.html">The Archives</a> | <a href="url.html">Adoptions</a> | <a href="http://www.joliesgirl.com/linkbuttons/mywww.html">WWW</a> | <a href="http://www.joliesgirl.com/livejournal/livejournal.html">Journal</a> | <a href="url.html">Version</a> | </center>
</tr></td>

<tr><td>
<p align="center">
<table border="0" bgcolor="#000000" cellpadding="1" cellspacing="0" width="524">
<tr><td>

<p align="center">
<table border="0" bgcolor="#FFFFFF" cellpadding="2" cellspacing="0" width="602">

<tr><td>

<p align="justify">

Text goes here.

</td></tr>
</table>
</td></tr>
</table>

</body>
</html>

pb&j
06-26-2004, 06:31 PM
you are missing an ending bracket here...

A:hover { text-decoration: underline overline; color:"black";}

after that, if you can specify exactly which font you are trying to adjust, that would be good.

for the colors, it is probably much better if you use the hex code instead of the word codes.

#000000 is the black code.

color:#000000;

SweetSisterMary
06-26-2004, 07:55 PM
I can't tell you how much time I wasted on that....

Thank you.