Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 687

Cleaning Up MyBB Community Forums Theme

$
0
0
The MyBB staff are doing a fantastic job on the new MyBB 1.8 release. I'm very excited to download and be able to use it myself. However, let's face it, not everybody is a fan of the new theme. This isn't a problem at all when hosting your own forum because you can always change it. It be comes a problem when it's used as the theme for the MyBB Community Forums. This tutorial will allow you to clean it up a little with a few minor css tweaks.

For Chrome:
1) Install the TamperMonkey extension.
2) Click the TamperMonkey icon in the top right, it should be immediately to the right of the address bar.
3) Select "Add a new script"
4) Copy and paste the code below in to the editor and save
5) Reload the forums and you should be good to go.

Code:
// ==UserScript==
// @name       Fix MyBB Community Forums
// @match      http://community.mybb.com/*
// ==/UserScript==

$("head").html($("head").html().replace("http://community.mybb.com/cache/themes/theme3/global.min.css", "https://t1hosting.com/otherfiles/mybb/global.min.css"));
$("head").html($("head").html().replace("http://community.mybb.com/cache/themes/theme1/css3.min.css", "https://t1hosting.com/otherfiles/mybb/css3.min.css"));


Here's what it will look like afterwards. Again, just a few small tweaks that make it look much nicer.

[Image: iRgHiOa.jpg] [Image: YpkyjwZ.jpg]

Viewing all articles
Browse latest Browse all 687