Skip to:
Content

BuddyPress.org

Ticket #3112: clearing-floats-in-posts.patch

File clearing-floats-in-posts.patch, 4.6 KB (added by hnla, 14 years ago)
  • bp-themes/bp-default/_inc/css/default.css

     
    21802180        color: #555;
    21812181}
    21822182
     2183.edit-entry {
     2184 clear:both;
     2185}
    21832186
    21842187/* > WordPress Blog Comment Styles
    21852188-------------------------------------------------------------- */
     
    24382441
    24392442#footer-widget-area ul.item-list li img.avatar {
    24402443        margin-left: 15px;  /* border is 4px */
    2441 }
    2442  No newline at end of file
     2444}
     2445
     2446/** Clearing rules for float containers **/
     2447.clearfix:after {
     2448  display:block;
     2449  content:".";
     2450  height:0;
     2451  visibility:hidden;
     2452  clear:both;
     2453}
     2454.clearfix {display:inline-block;}/* for IEMac & IE6/7 trigger*/
     2455.clearfix {display:block;} /* resets to block for all browsers */
     2456/** end clearfix rule set **/
     2457 No newline at end of file
  • bp-themes/bp-default/archive.php

     
    3434
    3535                                                        <p class="date"><?php echo get_the_date() ?> <em><?php _e( 'in', 'buddypress' ) ?> <?php the_category(', ') ?> <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></em></p>
    3636
    37                                                         <div class="entry">
     37                                                        <div class="entry clearfix">
    3838                                                                <?php the_content( __( 'Read the rest of this entry &rarr;', 'buddypress' ) ); ?>
    3939                                                        </div>
    4040
  • bp-themes/bp-default/index.php

     
    2525
    2626                                                        <p class="date"><?php echo get_the_date() ?> <em><?php _e( 'in', 'buddypress' ) ?> <?php the_category(', ') ?> <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></em></p>
    2727
    28                                                         <div class="entry">
     28                                                        <div class="entry clearfix">
    2929                                                                <?php the_content( __( 'Read the rest of this entry &rarr;', 'buddypress' ) ); ?>
    3030                                                        </div>
    3131
  • bp-themes/bp-default/onecolumn-page.php

     
    2424
    2525                                <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    2626
    27                                         <div class="entry">
     27                                        <div class="entry clearfix">
    2828
    2929                                                <?php the_content( __( '<p class="serif">Read the rest of this page &rarr;</p>', 'buddypress' ) ); ?>
    3030
    3131                                                <?php wp_link_pages( array( 'before' => __( '<p><strong>Pages:</strong> ', 'buddypress' ), 'after' => '</p>', 'next_or_number' => 'number')); ?>
    32                                                 <?php edit_post_link( __( 'Edit this entry.', 'buddypress' ), '<p>', '</p>'); ?>
     32                                                <?php edit_post_link( __( 'Edit this entry.', 'buddypress' ), '<p class="edit-entry">', '</p>'); ?>
    3333
    3434                                        </div>
    3535
  • bp-themes/bp-default/page.php

     
    1313
    1414                                <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    1515
    16                                         <div class="entry">
     16                                        <div class="entry clearfix">
    1717
    1818                                                <?php the_content( __( '<p class="serif">Read the rest of this page &rarr;</p>', 'buddypress' ) ); ?>
    1919
    2020                                                <?php wp_link_pages( array( 'before' => __( '<p><strong>Pages:</strong> ', 'buddypress' ), 'after' => '</p>', 'next_or_number' => 'number')); ?>
    21                                                 <?php edit_post_link( __( 'Edit this entry.', 'buddypress' ), '<p>', '</p>'); ?>
     21                                                <?php edit_post_link( __( 'Edit this entry.', 'buddypress' ), '<p class="edit-entry">', '</p>'); ?>
    2222
    2323                                        </div>
    2424
  • bp-themes/bp-default/single.php

     
    2121
    2222                                                <p class="date"><?php echo get_the_date() ?> <em><?php _e( 'in', 'buddypress' ) ?> <?php the_category(', ') ?> <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></em> <?php edit_post_link( __( 'Edit this entry', 'buddypress' ), '<em class="edit-link">', '</em>' ); ?></p>
    2323
    24                                                 <div class="entry">
     24                                                <div class="entry clearfix">
    2525                                                        <?php the_content( __( 'Read the rest of this entry &rarr;', 'buddypress' ) ); ?>
    2626
    2727                                                        <?php wp_link_pages(array('before' => __( '<p><strong>Pages:</strong> ', 'buddypress' ), 'after' => '</p>', 'next_or_number' => 'number')); ?>