HI All,
So while we wait for the theme to be fixed, there is a way around this for firefox & chrome users. Here is a very simple Greasemonkey Script to adjust the background color of the website.
// ==UserScript==
// @name Correct Bimmersport Background
// @version 1
// @description Change the background colour of the bimmersport forum
// @include http://bimmersport.co.nz/
document.body.style.background = "#e1e1e1";
// ==/UserScript==
In Firefox you will need to install the greasemonkey extension ( https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/ ), and then create a new script, and copy and paste the script above into it, then save the script, reload the bimmersport page and presto your bimmersport user experiance has been improved.
In Chrome install the tampermonkey extension ( https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en ) , and follow the process above.
I have tested both of these and they work as advertised.
There are extensions for greasemonkey script support for IE, and potentially other browsers, but i haven't tried them at all.
*Greasemonkey scripts allow you to adjust the contents of web pages being displayed in your browser. They do not affect the page views for any other users, and only affect the browser that they are installed in. I am no sure if there is support for browsers on cellphones. When the theme is corrected you will need to remove the script to get the new color. NOTE if your a novice do not modify the script above as you may affect other websites.