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.
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.
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>