View Full Version : problems


Moonlit
09-13-2003, 02:41 AM
My top frame seems to be having problems and I don't know why.

First, the image won't show up.
Second, the background no longer shows up.
Third...when Dreams and Contact are clicked, the left frame menus display a white bckgrnd instead the star one like the rest of the site.

All of these were working fine earlier... (click my www to see)
Any suggestions?

Thank you :)

pb&j
09-13-2003, 06:19 AM
in your "stylesheet.css" change it to this only...
A:link
{ text-decoration: none; color:#9c00c5; }
A:visited
{ text-decoration: none; color:#9c00c5; }
A:hover
{ text-decoration: none; color:#8991ff;}
A:active
{ text-decoration: none; color:#9c00c5;
background-color: #000000; }
body
{ background-image: url(Background---twinkling_stars.gif);
background-repeat: repeat;
background-position: 100% 100%;
background-attachment: fixed;
color: #8991ff;}

you had a bunch of stuff on that css page that does not belong and a missing ending bracket.

as for the previous pages that do show the background, they seem to have the css directly on the pages and not linking to the external one like your dreams page does.

as for your main image, it looks like the image file is missing or it could be mis-spelled or a wrong CaSe LeTtErInG problem. both the coding value and the filename must match exactly to work.

Moonlit
09-13-2003, 06:34 AM
Okay, I changed the style sheet to only what you showed. (No <html> or <style> or anything...right?)

I see what you mean about the CSS being in the other pages...and those work. I guess linking to my external CSS isn't working, and it still isn't, even though I changed it. I'm not sure why.

Also...why would the left and right frames show the background, but not the topframe? They are all linked to the same style sheet.

pb&j
09-13-2003, 01:04 PM
you are still missing an ending bracket at the end of your HOVER css on your external style sheet.

A:hover
{ text-decoration: none; color:#8991ff;}

as for the other pages showing a background, again, they are not linked to the external css page at all. they contain their own css area and are coded more correctly, thus their background images appear. once you do get the external css page working however, it would probably be a good idea to have all of your similar pages linked to it instead of having their own css being the same.