Skip to content

Responsive MyBB by lightwo

Screenshot of Responsive MyBB

Details

Authorlightwo

LicenseCC Zero

Categoryforum.pine64.org

Created

Updated

Size861 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Makes the MyBB theme responsive.

Notes

Removes width rules and some elements for a better mobile browsing experience.

Source code

/* ==UserStyle==
@name           Responsive MyBB
@namespace      forum.pine64.org
@version        1.3
@description    Makes the MyBB theme responsive.
@author         lightwo
@homepageURL    https://lightwo.net
==/UserStyle== */

@-moz-document domain("forum.pine64.org") {
@media all and (max-width: 960px) {
    /* Main content */
    #container {
        min-width: 0 !important;
    }

    /* Hide sidebar */
    .sidebar {
        display: none;
    }
    .forums {
        width: 100% !important;
    }
    
    /* No sticky header */
    #header {
        position: absolute;
    }
    
    /* No logo */
    #logo {
        display: none;
    }

    /* Remove "Replies" column in topic list */
    td.tcat:nth-of-type(2),
    td.trow1:nth-of-type(3),
    td.trow2:nth-of-type(3){
        display: none;
    }
}
}

Reviews

No reviews yet.