I dont have font changes?

This how my page looks:

problem is font. In two description sections which doesnt work. For every section I wrote new code in css for font style. First description font style is working, but other two seem to be unaffected by css! I checked everything and it seems right!

So whats the problem? Any idea?

Please post your HTML and CSS, or preferably a link to the page. An image is much less likely to provide clues to the cause.

#table{
float:left;
width:400px;
height:100px;
padding-top:50px;
padding-left:100px;
}

#picture{
float:left;
background-image:url();
width:90px;
height:51px;
}

#title{
height:20px;
font-weight:bold;
font-family:“Lucida Grande”, “Lucida Sans Unicode”, Arial, Verdana, sans-serif;
font-size:18px;
color:#575757;
text-align:left;
padding-left:120px;
}

#description{
text-align:left;
padding-left:120px;
font-family: “Lucida Grande”, “Lucida Sans Unicode”, Arial, Verdana, sans-serif;
font-size:12px;
}

<div id=“table”><div id=“picture”></div><div id=“title”>QUICK SEARCH</div><div id"description">description here</div></div>

Here it is.

The CSS looks to be correct, and should be showing the #title and #description blocks in Lucida Grande … is that not what is happening?

Have you got any other fonts specified elsewhere in the CSS?

And yeah, when press F12 to preview my page in chrome, right cick on description secion>inspect elemnt>and on right side under “CSS match style” i get this

div {
display: block;
}

but when i inspect description area which works (first one) i get my css!

Are you sure you’ve got the latest files? Press F5 to reload them. If you can give us a link to the pages where you’re having this trouble, we can have a look at exactly what is happening.

Page is not online so I dont have link!

In that case, post the entire HTML and CSS for the page, rather than a snippet.

I found it.

<div id""></div>

I forgot =

<div id=“”></div>

Thanks anyway for your time.