Forum Replies Created

Viewing 4 replies - 16 through 19 (of 19 total)
  • Awesome! Thank you so much, Michael!

    Style sheet code:

    @media screen and (min-width: 56.875em) {
    	.page-template-full-width-page .content-area
    	{
    	  float: left;
    	  margin-right: -100%;
    	  width: 100%;
    	}
    }

    Hi there! I have followed these instructions (copied and pasted) and it did get rid of the sidebar, but my content is not covering the full width of the page. I will admit to now learning wordpress and php, so I am not sure what of the pasted code that I need to change, to make this truly full width.

    http://www.dionescastro.com/aboutme/

    full-width-page-mine code:

    <?php
    /**
     * Template Name: Full Width Page
     *
     * @subpackage Twenty_Sixteen child theme
     */
    
    get_header(); ?>
    
    <div id="primary" class="content-area">
    	<main id="main" class="site-main" role="main">
    		<?php
    		// Start the loop.
    		while ( have_posts() ) : the_post();
    
    			// Include the page content template.
    			get_template_part( 'template-parts/content', 'page' );
    
    			// If comments are open or we have at least one comment, load up the comment template.
    			if ( comments_open() || get_comments_number() ) {
    				comments_template();
    			}
    
    			// End of the loop.
    		endwhile;
    		?>
    
    	</main><!-- .site-main -->
    
    	<?php //get_sidebar( 'content-bottom' ); ?>
    
    </div><!-- .content-area -->
    
    <?php //get_sidebar(); ?>
    <?php get_footer(); ?>

    Thread Starter DBCF WebAdmin

    (@dbcf-webadmin)

    I feel silly for posting …once I found out that it was in the Settings for my registration form. I didn’t realize the registration form would be putting it’s name there. And I kept assuming it was going to be in the event settings.

    Thank you for your response! Sorry to waste your time.

Viewing 4 replies - 16 through 19 (of 19 total)