• Resolved suportgc

    (@suportgc)


    Hello , good evening , I would like the help of you.

    I’m using your plugin with the theme Zerif Pro .

    However , I can not leave the page in Full.

    I tested all possible ways and could not.

    It would be possible to help me ?

    Below is a full page of models that own template available

    <?php
    /*
    Template Name: Full width template
    */
    get_header();
    ?>

    <div class=”clear”></div>
    </header> <!– / END HOME SECTION –>
    <?php zerif_after_header_trigger(); ?>
    <div id=”content” class=”site-content”>
    <div class=”container”>
    <?php zerif_before_page_content_trigger(); ?>
    <div class=”content-left-wrap col-md-12″>
    <?php zerif_top_page_content_trigger(); ?>
    <div id=”primary” class=”content-area”>
    <main id=”main” class=”site-main”>
    <?php
    while ( have_posts() ) :
    the_post();
    get_template_part( ‘content’, ‘page’ );
    /* 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();
    endif;
    endwhile;
    ?>
    </main><!– #main –>
    </div><!– #primary –>
    <?php zerif_bottom_page_content_trigger(); ?>
    </div><!– .content-left-wrap –>
    <?php zerif_after_page_content_trigger(); ?>
    </div><!– .container –>
    </div><!– .site-content –>
    <?php
    get_footer();
    ?>

Viewing 9 replies - 1 through 9 (of 9 total)
  • We need to have a look at the underlying CSS code for the given template in order to be able to offer assistance.

    Are you able to share a link to an Elemetor specific page so that we can take a look?

    Thread Starter suportgc

    (@suportgc)

    Hello good afternoon.

    thanks for the answer.

    Here’s a link from a page edited with Elementor

    https://suportgc.com.br/seguranca-2/

    OK, with your current template you can add the following CSS rule to either a child theme or a custom css plugin….

    .page-template-template-fullwidth-no-title .site-content .container {
        width: 100%;
        padding: 0;
    }
    Thread Starter suportgc

    (@suportgc)

    Hello good day.

    With inserted in the Code CSS was almost perfect.
    With only a small ledge on the side.

    You know how I can removably it ?

    Follow the link page

    https ://suportgc.com.br/seguranca-2/

    • This reply was modified 8 years, 2 months ago by suportgc.
    .page-template-template-fullwidth-no-title .col-xs-12, 
    .page-template-template-fullwidth-no-title .col-sm-12, 
    .page-template-template-fullwidth-no-title .col-md-12, 
    .page-template-template-fullwidth-no-title .col-lg-12 {
        padding-left: 0;
        padding-right: 0;
    }

    Would be the code you need for that.

    Thread Starter suportgc

    (@suportgc)

    Thank you very much.

    It is perfect.

    Thanks for sharing it with me your knowledge .

    Have a nice week

    Thread Starter suportgc

    (@suportgc)

    Hello good day.

    I would like to take one more doubt .

    How can I remove the start spaces and bottom of the page .

    follow this gif link

    https://suportgc.com.br/wp-content/uploads/2016/07/Gif-page-top-and-bottom.gif

    The page is this .
    https:// suportgc.com.br/seguranca/

    These values should do the trick for you…

    .page-template-template-fullwidth-no-title .header.header {
        min-height: 60px !important;
    }
    
    .page-template-template-fullwidth-no-title .content-left-wrap {
        padding-top: 0;
    }
    
    .page-template-template-fullwidth-no-title article.hentry {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: 0;
    }
    Thread Starter suportgc

    (@suportgc)

    Nice. Amazing.

    It worked perfectly.

    Magnificent.

    Thank you very much

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Not Full Page With template Zerif Pro (ThemeIsle)’ is closed to new replies.