Katerz
03-10-2005, 04:58 PM
I was editing the colors in my CSS style sheet ,I just want all of the writing to be light pink.I'm editing it in DreamWeaver.I previewed it from Dream Weaver in my browser and the changes that i'd made had shown.But except the link colors wernt lightpink even though I changed them and saved it.And because i'd made changes I deleted all my files on geocities,because everything still looked as it did before, so I re-uploaded the files because i'd made changes.And then doing that,I then went and viewed it in geocities and it didn't show any changes at all.Even though when I viewed it in Dream Weaver browser it showed the writing light pink but not the links.But viewing it in geocities it has shown no changes.Even from uploading the css again.
Heres my site address http://www.sealedwithakiss.cjb.net all the colors are messed up at the moment.
in your page showing the links, you have this...
<link rel="stylesheet" href="pnk.css" type="text/css">
at this time, that page does not exist...
http://www.sealedwithakiss.cjb.net/pnk.css
thus none of your styles from that "page" are present.
Katerz
03-10-2005, 05:51 PM
I know because i'd made a few changes I went and deleted everything on geoctiies then I uploaded all of it again and now it shows nothing!!!What have I done!!!!
kittycat
03-10-2005, 08:33 PM
You have some things in your stylesheet that shouldn't be there, like style and body tags
body {
font-family: tahoma;
font-size: 11px;
letter-spacing: 3px;
color:#FFCCFF;
scrollbar-face-color: #FFCCFF;
scrollbar-highlight-color: #333333;
scrollbar-3dlight-color: #FF66CC;
scrollbar-darkshadow-color: #FFCCFF;
scrollbar-shadow-color: #FFCCFF;
scrollbar-arrow-color: #FFFFFF;
scrollbar-track-color: #000000;
}
a:active {
color:#FFCCFF;
text-decoration: none; font-weight: normal;}
a:hover {
color: #FFFFFF;
text-decoration: none; border: dotted 1px #FC1286; cursor:e-resize;}
a:link { color: #FFCCFF;
text-decoration: none; font-weight: normal;}
a:visited { color: #FFFFFF; text-decoration: none; font-weight: normal;}
See if that works for you
Katerz
03-10-2005, 09:06 PM
Didn't make a difference.
1. delete this out of your css page...
<body background="http://i2.photobucket.com/albums/y33/preciouzkiss/bgimade.gif"bgproperties="fixed
2. delete this out of your left.html page...
<body>
(you have two starting body tags when you are allowed only one)
3. adjust your css link so that it finds your css page through geocities instead of it trying to find it through your cjb value...
<link rel="stylesheet" href="http://www.geocities.com/sealedwithakissx/pnk.css" type="text/css">
at the moment, you have the tag like this...
<link rel="stylesheet" href="pnk.css" type="text/css">
so it is trying to find your stylesheet here...
http://www.sealedwithakiss.cjb.net/pnk.css
which seems to not exist, but if you put your geo reference in, it should make it work a lot better.