There is a page.php template for my Wordpress site:
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 </span> | 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> <?php get_footer(); ?> 