Ok, problem solved. What U need to add is
global $more;
$more = 0;
So, query_posts, will look like this:
<?php query_posts('category_name=Your_Categ_Name&showposts=1');
global $more;
$more = 0;
?>
And than the part for displaying the post
<?php while (have_posts()) : the_post(); ?>
<div class="sidebar_cont"><?php the_content(__('Czytaj Ca?o??...')); ?></div>
<?php endwhile;?>
Ok, hope it is what U needed
Cya
p.s. U may want to read this: https://codex.www.ads-software.com/Template_Tags/query_posts
very useful