I have added custom fields to all my posts and they contain links to thumbnails, What I want to be able to do is on hover display the tag for each post in a div at the top of the page.
<br />
<?php $imgThumb = get_post_meta($post->ID,'img_thumb', true); ?><br />
<?php if($imgThumb !=""){ ?><br />
<div id="rollover2" style="margin-top:14px;width:300px;height:30px;display:none;"><br />
<?php the_tags(''); ?><br />
</div><br />
<a>" title="<?php the_title(); ?>"><?php echo "<img class='thumb' src='$imgThumb'/>" ?></a><br />
<?php } else { echo ''; } ?><br />
Could really do with some help, no one seems to know how to do this.,,,