How can we move the div block inside Wordpress?



  • There's a pattern on my Wordpress website:

    введите сюда описание изображения

    Here's the website: http://lagaro-wordpress-bootstrap.byethost33.com/

    How do you move into the picture and extend the whole 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>

        &lt;?php while ( have_posts() ) : the_post(); ?&gt;
    
                &lt;?php get_template_part( 'content', 'page' ); ?&gt;
    
                &lt;?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();
                ?&gt;
    
        &lt;?php endwhile; // end of the loop. ?&gt;
    

    <?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>

      &lt;/div&gt;
    

    <?php get_footer(); ?>



  • You've got the following in the source code of the completed 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>

    We're gonna need a place between us. </div><!-- close .row --> and </div><!-- close .container -->

    You need to find a box where these lines are formed, and then the situation.




Suggested Topics

  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2