Wrong position of posts in Wordpress

1

Broken images, should be one post below the other, completing 3 posts:

Index.php

<divid="bloco_um">
    <div id="destaque">
        <?php query_posts('showposts=1&category_name=noticias&offset=1');?>
        <?php if (have_posts()): while (have_posts()) : the_post();?>
            <a href="<?php the_Permalink()?>">
                <img src="<?php bloginfo('template_directory'); ?>/imagens/exemplo.jpg" width="340" height="170" border="0"  />
                <span><?php the_title();?></span>
            </a>
        <?php endwhile; else:?>

        <?php endif;?>                
    </div><!-- destaque -->

    <div id="outros_destaques">                
        <div class="outro_destaque">
        <?php query_posts('showposts=3&category_name=noticias&offset=1');?>
        <?php if (have_posts()): while (have_posts()) : the_post();?>
            <a href="<?php the_Permalink()?>">
                <img src="<?php bloginfo('template_directory'); ?>/imagens/exemplo.jpg" width="110" height="70" border="0"  />
                <span><?php the_title();?></span>
            </a>
        <?php endwhile; else:?>

        <?php endif;?>                    
    </div><!-- outro_destaque -->
</div><!-- outros_destaques -->

The idea is to show the main message on the left side and, on the right side, another 3 (one below the other). How do I resolve this?

    
asked by anonymous 18.03.2017 / 00:53

0 answers