Ticket #1136: responsive-wporg-forums.patch
File responsive-wporg-forums.patch, 3.1 KB (added by , 9 years ago) |
---|
-
bbpress.php
9 9 10 10 <div id="pagebody"> 11 11 <div class="wrapper"> 12 <div class="col-12 ">12 <div class="col-12 bbpress"> 13 13 <div class="content"> 14 14 <?php while ( have_posts() ) : the_post(); ?> 15 15 -
page-front-support.php
16 16 17 17 <?php do_action( 'bbp_template_notices' ); ?> 18 18 19 <div class="col-6 " id="forum-welcome">19 <div class="col-6 bbpress" id="forum-welcome"> 20 20 21 21 <p class="intro"><?php _e( 'We’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’ll find information on everything from installing WordPress for the first time to creating your own themes and plugins.', 'wporg-forums' ); ?></p> 22 22 <h3><?php _e( 'Getting Started Resources', 'wporg-forums' ); ?></h3> … … 41 41 <?php wp_tag_cloud( array( 'smallest' => 14, 'largest' => 24, 'number' => 22, 'taxonomy' => bbp_get_topic_tag_tax_id() ) ); ?> 42 42 </p> 43 43 </div><!-- #forum-welcome --> 44 <div class="col-6 ">44 <div class="col-6 bbpress"> 45 45 46 46 <div id="bbpress-forums"> 47 47 <?php bbp_get_template_part( 'loop', 'forums' ); ?> -
page-homepage.php
16 16 17 17 <?php do_action( 'bbp_template_notices' ); ?> 18 18 19 <div class="col-6 " id="forum-welcome">19 <div class="col-6 bbpress" id="forum-welcome"> 20 20 21 21 <p class="intro"><?php _e( 'We’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’ll find information on everything from installing WordPress for the first time to creating your own themes and plugins.', 'wporg-forums' ); ?></p> 22 22 <h3><?php _e( 'Getting Started Resources', 'wporg-forums' ); ?></h3> … … 41 41 <?php wp_tag_cloud( array( 'smallest' => 14, 'largest' => 24, 'number' => 22, 'taxonomy' => bbp_get_topic_tag_tax_id() ) ); ?> 42 42 </p> 43 43 </div><!-- #forum-welcome --> 44 <div class="col-6 ">44 <div class="col-6 bbpress"> 45 45 46 46 <?php bbp_get_template_part( 'content', 'archive-forum' ); ?> 47 47 -
page.php
14 14 15 15 <div id="pagebody"> 16 16 <div class="wrapper"> 17 <div class="col-12 ">17 <div class="col-12 bbpress"> 18 18 <?php while ( have_posts() ) : the_post(); ?> 19 19 20 20 <?php the_content(); ?> -
style.css
239 239 width: 212px; 240 240 } 241 241 } 242 243 .col-6.bbpress, .col-12.bbpress{ 244 width: auto; 245 }