DBCF WebAdmin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: twentysixteen full width template/no sidebarAwesome! Thank you so much, Michael!
Forum: Fixing WordPress
In reply to: twentysixteen full width template/no sidebarStyle sheet code:
@media screen and (min-width: 56.875em) { .page-template-full-width-page .content-area { float: left; margin-right: -100%; width: 100%; } }Forum: Fixing WordPress
In reply to: twentysixteen full width template/no sidebarHi 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(); ?>Forum: Plugins
In reply to: [Quick Event Manager] Uninstall EverythingI 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.