• I translated my home page into Portuguese and it’s not showing up as full width. Same thing happened with my Spanish translation and this is the code you gave me to fix it (into single.php). Please help me!! I don’t understand why this code wouldn’t have worked for all the translations of my home page. Thank you!!
    <?php get_header();
    get_template_part(‘breadcrums’); ?>
    <div class=”container”>
    <div class=”row enigma_blog_wrapper”>
    <div class=”col-md-8 hi” style=”width:100%”>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <?php get_template_part(‘post’,’content’);
    get_template_part(‘author’,’intro’);
    endwhile;
    else :
    get_template_part(‘nocontent’);
    endif;
    weblizar_navigation_posts();
    comments_template( ”, true ); ?>
    </div>
    <?php get_sidebar(); ?>
    </div> <!– row div end here –>
    </div><!– container div end here –>
    <?php get_footer(); ?>

Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Translation of home page not full width’ is closed to new replies.