View Full Version : It's messed up


Bebe x Baby Luv
05-18-2003, 08:05 PM
I was pretty sure the CSS was right, apparently not because it's not working. The images aren't showing up.
View the site here --> www.freewebs.com/michyluvsya/main.htm
Can someone please tell me why that everytime I make a CSS it NEVER WORKS!?
(I used Lissa's as a base, I figured it would work cuz...it usually does...but it doesnt)


<head>
<html>
<title>||--> e m o t i o n a l <--||--> v e r s i o n 2 :: neglect :: K r i s t e n K r e u k <--||</title>
<HEAD>

<!--If you want to know about my layout and HTML then check Site Stuff-->

<style type="text/css">
<!--
body
{
background-color : #CC99FF;
background-image : url(http://www.geocities.com/innocenteyes316/kkBG.jpg);
background-repeat : repeat;
background-attachment : scroll;
font-size : 7pt;
font-family : Tahoma;
letter-spacing : 2pt;
line-height : 15px;
cursor : crosshair;

}
A{cursor:hand;height:1px;behavior:url(linkhilight. htc);filter:progid:dximagetransform.microsoft.grad ientwipe(duration=1)}
A:link{color:#000000; text-decoration:none;cursor:"crosshair"}
A:visited{color:#000000;text-decoration:line-through;font-weight:none}
A:hover {text-decoration: none; color:#006666; filter: blur; height:0px}-->
</style>

<body>

<img src="http://www.geocities.com/innocenteyes316/kk517.jpg">

</body>
</html>

Elentari
05-18-2003, 08:28 PM
Geocities doesn't allow direct linking (meaning you can't store pictures there and call for them in a script on another server).........that seems to be the problem.

Also you don't need the target tag for the background image, that is messing up your code too and you can only have 1 background image per page...and you don't need any "'s in the CSS styles but you do need ; at the end, if you don't want any font weight you just leave out the tag...you have an extra space before your .htc file ....so basically your code should look like this.. (but remember you have to put the picture on your own server and change the url for it).



<style type="text/css">
<!--
body {
background-color : #CC99FF;
background-image : url{http://www.geocities.com/innocenteyes316/kkBG.jpg);
background-repeat : repeat;
background-attachment : scroll;
font-size : 7pt;
font-family : Tahoma;
letter-spacing : 2pt;
line-height : 15px;
cursor : crosshair;
}
A {
cursor:hand;
height:1px;
behavior:url(linkhilight.htc);filter:progid:dximag etransform.microsoft. gradientwipe(duration=1)
}
A:link {
color:#000000;
text-decoration:none;
cursor:crosshair;
}
A:visited {
color:#000000;
text-decoration:line-through;
}
A:hover {
text-decoration: none;
color:#006666;
filter: blur;
height:0px
}
-->
</style>

Bebe x Baby Luv
05-18-2003, 10:42 PM
That wasn't a another background image...that was the banner, part of the layout...code didnt work

go here to see the basic layout
http://www.geocities.com/innocenteyes316/stuff.html

---> my other layout was loaded on geocities, and it worked

I've run out of choices!!!!!
If I can't make a site on Geocities then I'm screwed...

I'll never get my site finished....

Bebe x Baby Luv
05-21-2003, 10:10 PM
...anyone?

amicus
05-21-2003, 10:26 PM
the code looks like it's working :). here's the code after my corrections, give it a try.

<html>
<head>
<title>||--> e m o t i o n a l <--||--> v e r s i o n 2 :: neglect :: K r i s t e n K r e u k <--||</title>
<head>

<style type="text/css">
<!--
body {
background-color: #CC99FF;
background-image: url( "http://www.geocities.com/innocenteyes316/kkBG.jpg" );
background-repeat: repeat;
background-attachment: scroll;

font-family: tahoma;
font-size: 7pt;

letter-spacing: 2pt;
line-height: 15px;

cursor: crosshair;
}

a {
cursor: hand;
height: 1px;
behavior: url( "linkhilight.htc" );
filter: progid:dximagetransform.microsoft.gradientwipe( duration=1 );
}
a:link {
color: #000000;
text-decoration: none;
cursor: crosshair;
}
a:visited {
color: #000000;
text-decoration: line-through;
font-weight: none;
}
a:hover {
text-decoration: none;
color: #006666;
filter: blur;
height: 0px;
}
-->
</style>

<body>
<img src="http://www.geocities.com/innocenteyes316/kk517.jpg">
</body>
</html>

Bebe x Baby Luv
05-22-2003, 08:42 PM
thank you!!!

omg...why can everyone else make css work but me!?