I needed a different look and I figured out how to create a custom theme for the board in Firefox. Here's how:
1. Install the GreaseMonkey Add-On.
2. Create a new script (Tools -> Greasemonkey -> New User Script).
3. Enter params.
a. Name: Copywriters Board Theme
b. Namespace:
http://www.copywritersboard.com
c. Description: Copywriters Board Theme
d. Includes:
http://www.copywritersboard.com/*
4. It may ask to choose a text editor. Navigate to your favorite and click Open or Ok.
5. At this point you can enter Javascript to change tag attributes like widths or font and color styles. Here's a basic one.
Code:
// ==UserScript==
// @name Copywriters Board Theme
// @namespace http://www.copywritersboard.com
// @description Copywriters Board Theme
// @include http://www.copywritersboard.com/*
// ==/UserScript==
// background color
document.body.style.background='#006';
// content width
document.getElementsByTagName("table")[0].width='90%';
// expands posts
var divs = document.getElementsByTagName("div");
for(var i=0; i < divs.length; i++) {
var div = divs[i];
if ( div.style.width=='760px' ) {
div.style.width="100%";
}
}
var theRules = new Array();
if (document.styleSheets[0].cssRules) {
theRules = document.styleSheets[0].cssRules;
} else if (document.styleSheets[0].rules) {
theRules = document.styleSheets[0].rules;
}
// post quote, profile (alt2)
theRules[20].style.fontSize = '0.8em';
theRules[20].style.color = '#333';
theRules[20].style.backgroundColor = '#dde';
// post (no changes)
theRules[63].style.fontSize = '1.0em';
theRules[63].style.color = '#000';
I hope that helps. Cheers