Make Single Page Wider
-
Hello!
I need help making my page wider. I am hosting a webinar soon and have embedded a Youtube Live Stream and Chat Box onto a single page in my WordPress. (Theme: Olsen Light)
The problem is that the video box and chat box are super small, because the width of my single page in my theme must be set to small.
The problem I need fixed is how to make the code of my theme wider for content on a single page.
Here is my website: https://www.emmalenhart.com
Thank you!
This is what the code looks like now in Olsen Light: Single Page (page.php)
<?php get_header(); ?>
<div class=”row”>
<div class=”col-md-8″>
<main id=”content” role=”main” itemprop=”mainContentOfPage” itemscope=”itemscope” itemtype=”https://schema.org/Blog”>
<div class=”row”>
<div class=”col-md-12″><?php while ( have_posts() ) : the_post(); ?>
<article id=”entry-<?php the_ID(); ?>” <?php post_class( ‘entry’ ); ?> itemscope=”itemscope” itemtype=”https://schema.org/BlogPosting” itemprop=”blogPost”>
<h2 class=”entry-title” itemprop=”headline”>
<?php the_title(); ?>
</h2><?php if ( has_post_thumbnail() ) : ?>
<div class=”entry-featured”>
“>
<?php the_post_thumbnail( ‘post-thumbnail’, array( ‘itemprop’ => ‘image’ ) ); ?>
</div>
<?php endif; ?><div class=”entry-content”>
<?php the_content(); ?>
<?php wp_link_pages(); ?>
</div><div class=”entry-utils group”>
<?php get_template_part( ‘part’, ‘social-sharing’ ); ?>
</div><?php comments_template(); ?>
</article>
<?php endwhile; ?></div>
</div>
</main>
</div><div class=”col-md-4″>
<?php get_sidebar(); ?>
</div></div>
<?php get_footer(); ?>
- The topic ‘Make Single Page Wider’ is closed to new replies.