Maybe could be useful add some code:
Here i call the category in the sidebar
<?php query_posts('showposts=2&cat=20'); ?>
<li>
<?php while (have_posts()) : the_post(); ?>
<div class="classname"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
here i call the image from the custom field
<img src="<?php bloginfo('template_url'); ?>/images/<?php $values = get_post_custom_values("Case"); echo $values[0]; ?>" alt="" /></a>
here i call the titles
<a href="<?php the_permalink() ?>" rel="bookmark" class="title"><?php the_title(); ?>»</a></div>
<?php endwhile; ?>
</li>
After this is needed some code to tell that we are not in cat=20, but in the real current category, but i found no solutions.
Please, i really need help!