Boa tarde, eu criei um template em branco para chamar a header e conteúdo. Só que a página ficou com barra de rolagem horizontal.
Segue o código do template
<?php
/**
* Template Name: Página em branco
* Template Post Type: post, page
* Template de página em branco
*/
if ( is_page('inicio') ) :
get_header( 'home' );
else:
get_header();
endif;
?>
<div id="ht-site-container">
<div id="content" class="pageContent">
<?php
while ( have_posts() ) : the_post(); ?>
<div class="entry-content-page">
<?php the_content(); ?>
</div>
<?php
endwhile;
wp_reset_query();
?>
<?php
?>
<?php
$my_query = new WP_Query( 'cat=1' );
?>
<?php if ( $my_query->have_posts() ) : ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-content">
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
</div><?php the_ID(); ?>
<?php
wp_reset_postdata();
endif;
?>
</div>
<?php get_footer(); ?>
Alguma dica do que posso fazer?