Skip to:
Content

bbPress.org

Ticket #3536: 3536.diff

File 3536.diff, 1.0 KB (added by viralsampat, 9 months ago)

I have checked above mentioned issue and I have resolved it and added patch. Also, I have attached screenshot after resolved this issue.

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

    diff --git a/buddypress.org/public_html/wp-content/themes/bb-base/style.css b/buddypress.org/public_html/wp-content/themes/bb-base/style.css
    index b787ebc05..fbf249939 100644
    a b body.trac a.attachment { 
    17541754                height: 38px !important;
    17551755                width: 38px !important;
    17561756        }
     1757
     1758        /* Resolved Pagination text hide issue. */
     1759        #bbpress-forums .bbp-pagination .bbp-pagination-count{
     1760                width: auto;
     1761                display: inline-block;
     1762        }
    17571763}
    17581764
     1765
    17591766/* Mobile */
    17601767@media only screen and (max-width: 480px) {
    17611768        #bbpress-forums div.bbp-topic-author img.avatar,
    body.trac a.attachment { 
    17991806                top: 0;
    18001807                left: 0;
    18011808        }
     1809
     1810        /* Resolved Pagination text hide issue. */
     1811        #bbpress-forums .bbp-pagination .bbp-pagination-count {
     1812                width: 100%;
     1813                display: block;
     1814        }
     1815       
     1816        #bbpress-forums .bbp-pagination .bbp-pagination-links {
     1817                float: none;
     1818                width: 100%;
     1819                display: inline-block;
     1820                margin-top: 10px;
     1821        }
    18021822}
    18031823