There is a page.php template for my Wordpress site:

enter image description here

Here is the site: http://lagaro-wordpress-bootstrap.byethost33.com/

How to move to the place indicated in the picture, and stretch the entire width of the block?

<?php /** * The template for displaying all pages. * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages * and that other 'pages' on your WordPress site will use a * different template. * * @package _tk */ get_header(); ?> <title><?php wp_title( '|', true, 'right' ); ?></title> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'page' ); ?> <?php // If comments are open or we have at least one comment, load up the comment template if ( comments_open() || '0' != get_comments_number() ) comments_template(); ?> <?php endwhile; // end of the loop. ?> <?php get_sidebar(); ?> <div class="custom"> <p><span style="font-size: 10.5pt; line-height: 115%; font-family: Arial, sans-serif; color: #3bab4e; " lang="NL-BE">Quazr bvba&nbsp;</span>&nbsp;| Rue des Fusilles 5 | B-7750 Mont de | &prime;Enclus | T <a href="tel:+32 (0)69 23 50 23">+32 (0)69 23 50 23</a> | F <a href="tel:+32 (0)69 23 60 23">+32 (0)69 23 60 23</a></p></div> </div> <?php get_footer(); ?> 
  • Template code here: pastebin.com/cbXEtnZX - kir
  • The code must be included in the question itself. To format the code there are special buttons in the editor. ) - Nick Volynkin
  • I pressed the "code" button, but for some reason, not all of the code was inserted. - kir
  • strange. Check out now all? You can click [edit] and see what the markup looks like. - Nick Volynkin
  • Well, now everything is ok. Just insert again - I do not want to break everything. - kir

1 answer 1

You have the following in the source code of the finished page:

  </div><!-- close .*-inner (main-content or sidebar, depending if sidebar is used) --> <div class="custom"> <p><span style="font-size: 10.5pt; line-height: 115%; font-family: Arial, sans-serif; color: #3bab4e; " lang="NL-BE">Quazr bvba&nbsp;</span>&nbsp;| Rue des Fusilles 5 | B-7750 Mont de | ′Enclus | T <a href="tel:+32 (0)69 23 50 23">+32 (0)69 23 50 23</a> | F <a href="tel:+32 (0)69 23 60 23">+32 (0)69 23 60 23</a></p></div> </div><!-- close .row --> </div><!-- close .container --> </div><!-- close .main-content --> <footer id="colophon" class="site-footer" role="contentinfo"> 

your code

<div class="custom"> ... </div>

must be placed between </div><!-- close .row --> and </div><!-- close .container -->

You need to find in the template where these lines are formed, well, and then on the situation.