CSS passe o mouse sobre as miniaturas no wordpress

Estou tentando criar uma grade de miniaturas no wordpress, que consegui fazer. Então, quando o usuário passar o mouse sobre uma imagem, quero que ela fique com uma cor semi-transparente e mostre o título da postagem abaixo. Acho que comecei a avançar de alguma forma com o código, mas, no momento, o cursor passa por baixo da imagem em vez de na parte superior da miniatura. Eu queria saber se alguém poderia me ajudar com isso? Eu acho que é o CSS que é o problema. Tentei a posição: absoluta, mas que fica no mesmo lugar no topo da grad

<div id="gridContainer">
<?php
$c = 1; //init counter
$bpr = 3; //boxes per row
if(have_posts()) :
    while(have_posts()) :
        the_post();
?>


<div class="post" id="post-<?php the_ID(); ?>">


<div class="postImage">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail('grid-post-image'); ?></a>
</div>

<div class="hover">
                <h1 class="title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
            </div>
            </div>


<?php
if($c == $bpr) :
?>
<div class="clr"></div>
<?php
$c = 0;
endif;
?>
<?php
        $c++;
    endwhile;
endif;
?>
<div class="clr"></div>
</div>

E aqui está o CSS, que acho que precisa ser alterado.

.post {
    float: left;
    width: 275px;
}

.clr {
    clear:both;
}


.hover {
      width: 275px;
   height: 185px;
    top: 0;
    z-index: 1;
        background: #fff;
      opacity:0;
}

.hover:hover{
      opacity:0.9;
}

questionAnswers(1)

yourAnswerToTheQuestion