Cuberite Forum
What is the name of this theme you use at this Mybb forum? - Printable Version

+- Cuberite Forum (https://forum.cuberite.org)
+-- Forum: Cuberite (https://forum.cuberite.org/forum-4.html)
+--- Forum: Discussion (https://forum.cuberite.org/forum-5.html)
+--- Thread: What is the name of this theme you use at this Mybb forum? (/thread-3183.html)



What is the name of this theme you use at this Mybb forum? - tanakinci2002@gmail.com - 06-16-2018

What is the name of this theme you use at this Mybb forum? Or if you made it how is it responsive? It looks like default theme but responsive.


RE: What is the name of this theme you use at this Mybb forum? - NiLSPACE - 06-18-2018

I believe either @sphinxc0re or @Mathias added the theme.

I noticed a css file called 'responsive.css' which might do the trick:

@media (max-width: 500px) {
     .author_statistics {
         width: 98%;
         padding-left: 0!important;
         padding-right: 0!important;
    }
}
 @media (max-width: 800px) {
     #logo {
         text-align: center;
    }
     #logo img {
         width: 70%;
         margin-bottom: 25px;
    }
     .wrapper {
         width: 100%;
         overflow-x: scroll;
    }
     .menu {
         text-align: center!important;
    }
     .menu a {
         padding-bottom: 5px;
    }
     tbody{
         min-width: 600px;
    }
     .widthstyle {
         width: 50%;
    }
     #morelinks {
         padding-top: 8px;
    }
     #panel .wrapper {
         margin-left: 5px;
    }
     .threadcount, .postcount, .viewcount, .forumviewers {
         display: none;
    }
     .showonmobile {
         display: block!important;
         font-style: italic;
         padding-top: 5px;
    }
     .showonmobilethreads {
         display: block!important;
         font-style: italic;
         padding-top: 2px;
         padding-bottom: 3px;
    }
}
 #container {
     min-width: 0px;
     width: 100%;
}
 .wrapper {
     min-width: 0px;
}
 .showonmobile {
     display: none;
}




RE: What is the name of this theme you use at this Mybb forum? - tanakinci2002@gmail.com - 06-20-2018

It worked! Thanks.