tags:

views:

62

answers:

2

Hello everyone,

Please help me with this insanity:

http://imageoneads.com/zenliver/

My menu bar worked fine & I accidently deleted or moved one of class or ID. Now it disappeared. All browsers Wont display the menu, except Firefox for Mac. This drives me nut....Cant believe I have to start over if I can't figure it out....Please help....Thanks ahead

tran006

+1  A: 

You missed a brace.

#header li a{
 padding: 0em;
  display:block;
 font-family:Arial, Helvetica, sans-serif
 font-size: 1em
 color: #fff;
 text-decoration:none;
 line-height: 30px;
 margin-right: 0.5em;
 } <----
Xavier Ho
Thanks so much. I fixed it, but menubar still not shown ???
Tran
@Tran: First, you're missing a lot of semicolons (`;`) in your CSS defined in the HTML page. Second, your `main.css` is defining the `#header li a:link, #header li a:visited` with `color: #FFFFFF`. That's white text, on white background. Third, consider moving all your CSS code into `main.css` so it's easier to maintain. =]
Xavier Ho
A: 

header li a{

padding: 0em;
display:block;
font-family:Arial, Helvetica, sans-serif
font-size: 1em
color: #fff;
text-decoration:none;
line-height: 30px;
margin-right: 0.5em;

You have no end bracket on this.

Superstringcheese
lol Xav beat me to it
Superstringcheese
Thanks so much. I fixed it, but menubar still not shown ??
Tran
It's all figured out. Im in the process of cleaning up the codes. Thanks every one.
Tran