need CSS help!

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
I need help here: http://jagf.net/ufo/

You see the links under the banner? This image should be there to: http://jagf.net/ufo/images/menu.png

I tried using <div id="menu"> around the links and add:


menu {
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
color: #FF0000;
background-image: url('./ufo/images/menu.png');
background-repeat: repeat-x;
font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
margin: 0;
}

in the CSS.

what did I do wrong?
 
Last edited:

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
no. Should I add it?

I added it and the text turned smaller than this. And the image still isn't there.

When I changed the div to <div id="menu"> the text turned normal size but the image is still missing.

I think there is something wrong with the

HTML:
 background-image:url(./ufo/images/menu.png);
background-repeat:repeat-x;

because it doesen't appear in firebug in the HTML tab but it does in the CSS.

Yep my bad... Accidentaly putted a extra /ufo/ in the url

How to change the link color in the CSS file?
 
Last edited:
Top