Making WordPress.org

Ticket #1136: responsive-wporg-forums.patch

File responsive-wporg-forums.patch, 3.1 KB (added by deconf, 9 years ago)
  • bbpress.php

     
    99
    1010<div id="pagebody">
    1111        <div class="wrapper">
    12                 <div class="col-12">
     12                <div class="col-12 bbpress">
    1313                        <div class="content">
    1414                                <?php while ( have_posts() ) : the_post(); ?>
    1515
  • page-front-support.php

     
    1616
    1717                <?php do_action( 'bbp_template_notices' ); ?>
    1818
    19                 <div class="col-6" id="forum-welcome">
     19                <div class="col-6 bbpress" id="forum-welcome">
    2020
    2121                        <p class="intro"><?php _e( 'We&rsquo;ve got a variety of resources to help you get the most out of WordPress. Your first stop should be our <a href="https://codex.wordpress.org">documentation</a>, where you&rsquo;ll find information on everything from installing WordPress for the first time to creating your own themes&nbsp;and&nbsp;plugins.', 'wporg-forums' ); ?></p>
    2222                        <h3><?php _e( 'Getting Started Resources', 'wporg-forums' ); ?></h3>
     
    4141                                <?php wp_tag_cloud( array( 'smallest' => 14, 'largest' => 24, 'number' => 22, 'taxonomy' => bbp_get_topic_tag_tax_id() ) ); ?>
    4242                        </p>
    4343                </div><!-- #forum-welcome -->
    44                 <div class="col-6">
     44                <div class="col-6 bbpress">
    4545
    4646                        <div id="bbpress-forums">
    4747                                <?php bbp_get_template_part( 'loop', 'forums' ); ?>
  • page-homepage.php

     
    1616
    1717                <?php do_action( 'bbp_template_notices' ); ?>
    1818
    19                 <div class="col-6" id="forum-welcome">
     19                <div class="col-6 bbpress" id="forum-welcome">
    2020
    2121                        <p class="intro"><?php _e( 'We&rsquo;ve got a variety of resources to help you get the most out of WordPress. Your first stop should be our <a href="https://codex.wordpress.org">documentation</a>, where you&rsquo;ll find information on everything from installing WordPress for the first time to creating your own themes&nbsp;and&nbsp;plugins.', 'wporg-forums' ); ?></p>
    2222                        <h3><?php _e( 'Getting Started Resources', 'wporg-forums' ); ?></h3>
     
    4141                                <?php wp_tag_cloud( array( 'smallest' => 14, 'largest' => 24, 'number' => 22, 'taxonomy' => bbp_get_topic_tag_tax_id() ) ); ?>
    4242                        </p>
    4343                </div><!-- #forum-welcome -->
    44                 <div class="col-6">
     44                <div class="col-6 bbpress">
    4545
    4646                        <?php bbp_get_template_part( 'content', 'archive-forum' ); ?>
    4747
  • page.php

     
    1414
    1515<div id="pagebody">
    1616        <div class="wrapper">
    17                 <div class="col-12">
     17                <div class="col-12 bbpress">
    1818                        <?php while ( have_posts() ) : the_post(); ?>
    1919
    2020                                <?php the_content(); ?>
  • style.css

     
    239239                width: 212px;
    240240        }
    241241}
     242
     243.col-6.bbpress, .col-12.bbpress{
     244        width: auto;
     245}