View Full Version : image problem


Charrey
05-11-2003, 11:06 PM
I have a table with an image in it, but sometimes the image shows and sometimes it is there, but it's behind the green background. How can I fix it?

Here's the address, if you need it: http://silence.faded-rings.net/layout8.html

Thanks for any help.

Xiphias
05-11-2003, 11:11 PM
everything shows up fine here ;)

Charrey
05-11-2003, 11:14 PM
Hmm it works sometimes for me....
Maybe it's just my computer.

Xiphias
05-11-2003, 11:15 PM
Originally posted by Charrey
Hmm it works sometimes for me....
Maybe it's just my computer.

hopefully not :stickout:

Elentari
05-11-2003, 11:18 PM
Tried lots to view your page and help you out but the link just wont load. Sorry.

amicus
05-12-2003, 12:22 AM
that's a pretty large image, you might want to concider cutting it up 187,681 bytes is pretty large for an image. that's way bigger then most pages.

if the image is intermittenly showing up. you might just be loosing packets. it happens all the time, there isn't much you can do about it.

once the image doesn't show up try right click --> show picture., another test is just refresh. if that works then it's just packets getting lost 'cos the image is there it's just not being shown.

don't know what to tell you it happens all the time.

SSPrincess
05-12-2003, 12:29 AM
I can't help you out, but I'm very curious to know how you got your cursor to be orange, and then turn into a Dragonfly when you put it over the link.

Charrey
05-12-2003, 01:08 AM
I plan on cutting up the image. It could be why it's being weird, I never thought of that. Thanks.

As for SSPrincess's question, first you need to find a cursor you want to use from somewhere...or you can make one using a program. I searched on google for ones that are free to take.
Then, put this in the head of your document:

<style type="text/css">
<!--
BODY{
cursor:url("PUT CURSOR URL HERE");
}
-->
</style>

that is for the arrow.
for the hovering cursor (the dragonfly), you have to put cursor:url("PUT CURSOR URL HERE"); in the hover part of your css, like this:

<style type="text/css">
<!--
A:link{color:"#000000";text-decoration:none;}
A:visited{color:"#000000";text-decoration:none;}
A:active{color:"#000000";text-decoration:none;}
A:hover{color:"#000000";text-decoration:none; cursor:url(PUT CURSOR URL HERE);
}
-->
</style>


Does that answer your question well enough?

SSPrincess
05-12-2003, 01:15 AM
Thanks! Yes it does!