Skip to:
Content

bbPress.org

Ticket #3563: 3563.patch

File 3563.patch, 4.0 KB (added by pitamdey, 16 months ago)

After applying this solution the issue will be solved

  • buddypress.org/public_html/wp-content/themes/bb-base/style.css

     
    169169
    170170div.feature {
    171171        float: left;
    172         width: 225px;
    173         margin: 0 20px 20px 0;
     172        width: 25%;
    174173        font-size: 12px;
    175174        line-height: 22px;
    176175}
     176
     177@media screen and (max-width: 700px) {
     178        div.feature {
     179                width: 50%;
     180        }
     181}
     182
    177183div.sidebar div.feature {
    178184        margin: 0 0 24px 0;
    179185}
  • buddypress.org/public_html/wp-content/themes/codex-bbpress-org/front-page.php

     
    1616                                        $count = count( $terms );
    1717
    1818                                        if ( $count > 0 ) {
    19                                                 echo '<div style="width: 24%; float: left;">';
     19                                                echo '<div style="width: 50%; float: left;">';
    2020                                                echo '<h2>Components</h2>';
    2121                                                echo '<ul>';
    2222                                                foreach ( $terms as $term ) {
     
    3434                                        $count = count( $terms );
    3535
    3636                                        if ( $count > 0 ) {
    37                                                 echo '<div style="width: 24%; float: left;">';
     37                                                echo '<div style="width: 50%; float: left;">';
    3838                                                echo '<h2>Versions</h2>';
    3939                                                echo '<ul>';
    4040                                                foreach ( $terms as $term ) {
     
    5252                                        $count = count( $terms );
    5353
    5454                                        if ( $count > 0 ) {
    55                                                 echo '<div style="width: 24%; float: left;">';
     55                                                echo '<div style="width: 50%; float: left;">';
    5656                                                echo '<h2>Types</h2>';
    5757                                                echo '<ul>';
    5858                                                foreach ( $terms as $term ) {
     
    7070                                        $count = count( $terms );
    7171
    7272                                        if ( $count > 0 ) {
    73                                                 echo '<div style="width: 24%; float: left;">';
     73                                                echo '<div style="width: 50%; float: left;">';
    7474                                                echo '<h2>Contexts</h2>';
    7575                                                echo '<ul>';
    7676                                                foreach ( $terms as $term ) {
  • buddypress.org/public_html/wp-content/themes/codex-buddypress-org/front-page.php

     
    1616                                        $count = count( $terms );
    1717
    1818                                        if ( $count > 0 ) {
    19                                                 echo '<div style="width: 24%; float: left;">';
     19                                                echo '<div style="width: 50%; float: left;">';
    2020                                                echo '<h2>Components</h2>';
    2121                                                echo '<ul>';
    2222                                                foreach ( $terms as $term ) {
     
    3434                                        $count = count( $terms );
    3535
    3636                                        if ( $count > 0 ) {
    37                                                 echo '<div style="width: 24%; float: left;">';
     37                                                echo '<div style="width: 50%; float: left;">';
    3838                                                echo '<h2>Versions</h2>';
    3939                                                echo '<ul>';
    4040                                                foreach ( $terms as $term ) {
     
    5252                                        $count = count( $terms );
    5353
    5454                                        if ( $count > 0 ) {
    55                                                 echo '<div style="width: 24%; float: left;">';
     55                                                echo '<div style="width: 50%; float: left;">';
    5656                                                echo '<h2>Types</h2>';
    5757                                                echo '<ul>';
    5858                                                foreach ( $terms as $term ) {
     
    7070                                        $count = count( $terms );
    7171
    7272                                        if ( $count > 0 ) {
    73                                                 echo '<div style="width: 24%; float: left;">';
     73                                                echo '<div style="width: 50%; float: left;">';
    7474                                                echo '<h2>Contexts</h2>';
    7575                                                echo '<ul>';
    7676                                                foreach ( $terms as $term ) {
  • wordpress.tv/public_html/wp-content/themes/wptv2/style.css

     
    269269        padding: 0 5px;
    270270}
    271271
     272#menu li a:hover {
     273        color: red !important;
     274}
     275
    272276#menu #searchform {
    273277        margin: 0 0 0 15px;
    274278}
     
    20942098.video-list {
    20952099        display: flex;
    20962100        flex-wrap: wrap;
     2101        justify-content: center;
    20972102        margin: 0 -5px;
    20982103}
    20992104
    21002105.video-list:after {
    21012106        content: '';
    2102         flex: auto;
    21032107}
    21042108
    21052109.video-list li {