views:

842

answers:

2

Here is the link: http://pangeaadvisors.org/projects.asp

2009 Projects position in the center as I want them to be. But click on 2007 projects. When clicked, overlay positioned on the right side and without the background.

A: 

Could it be because your div elements for each overlay appear within the < ul > tags. Right now you have (i think its invalid HTML to have it like this)

<ul>
    <li>
        <a></a>
    </li>
    <div overlay />
</ul>

Have you tried it like this:

<ul>
    <li>
        <a></a>
        <div overlay />
    </li>
</ul>
s_hewitt
Yes. Didn't make any difference.
A: 

How did you fix this?