Hi,
If you want to expand the div for more info, you can't use the class name as more than one box can have the same class name for styling.
Apply an individual id for each box and then access them for animation via jquery.
So, add an id to the div:
HTML Code:
<div class="work">
<div id="bottom">
<div id="workwrapper">
<div class="work">
<div id="web1" class="web"> <img src="images/portfolio/web-inhealth.jpg" alt="InHealth CDS">
<div class="info1">
<h2>Web Design</h2>
<p>A flash based website using the Gaia Framework. This site was initially built for a young entertainment company out of Atlanta.</p>
<a href=""><span>Read more</span></a> </div>
and then in jquery, replace calls:
Code:
$('.work #bottom .work .info').hide();
to something like:
Code:
$('#info1').hide();
HTH
Bookmarks