There is now a tan theme that is almost the same as the old tan theme (See the Themes section)
--------------------------------------------------------------------------------------
Install Guides
--------------------------------------------------------------------------------------
Google Chome Install Guide
- Download the https://chrome.google.com/extensions/detail/fjnbnpbmkenffdnngjfgmeleoegfcffe?hl=en-gb Extension
- Press the Spanner Icon (Top right) and Press Extensions
- Press the Options button for Stylish
- Press "Add New Style"
- Write a name in the name box (anything you want)
- Copy the CSS scripts that you want into the large text box marked "code"
- Check "Enabled"
- In the "Applies to" drop down, select "URLs Starting With" and in the text box put "http://www.gamesas.com/" (Without the quotes)
- Press Save
Firefox Install Guide
- Install https://addons.mozilla.org/en-US/firefox/addon/2108
- Click on the new icon bottom right
- Ensure you are on the forums
- Press Write New Style, then For www.gamesas.com
- It should open a dialog box
- Put any name you want in the "name" box
- Paste the CSS scripts that you want between the braces. e.g.:
@namespace url(http://www.w3.org/1999/xhtml);@-moz-document domain("www.gamesas.com") { /* paste code in this bit */}- Press Save
Opera Installation Guide (By DEFRON)
-Save CSS somewhere
-right-click the forum website
-Edit Site Preferences
-Display
-Using the Choose Dialoge, locate the CSS file
-Open it, ok out
-Restart Opera.
Known incompatibility with themes not specific for Opera: http://www.gamesas.com/index.php?/topic/1081516-forum-style-alterations/page__view__findpost__p__15754843
--------------------------------------------------------------------------------------
Themes
--------------------------------------------------------------------------------------
http://www.gamesas.com/index.php?/topic/1081516-forum-style-alterations/page__view__findpost__p__15755423 by Qazaaq
http://www.gamesas.com/index.php?/topic/1081516-forum-style-alterations/page__view__findpost__p__15754408 by falchya
http://www.gamesas.com/index.php?/topic/1081516-forum-style-alterations/page__view__findpost__p__15756462 by Max_aka_NOBODY (Based on falchya's theme)
http://www.gamesas.com/index.php?/topic/1081516-forum-style-alterations/page__view__findpost__p__15754690 by Solid_moose (Tweaked version of Max's theme)
--------------------------------------------------------------------------------------
CSS Tweaks
--------------------------------------------------------------------------------------
I am trying to keep everything modular so that people can pick or chose. If anyone has any CSS they want to add, let me know and I can edit it into this post.
/** * Extends forum width to 95% of the page */#container{ width:95% !important;}#left, #right{ display: none !important;}/** * This is CSS3, so it may not work on all browsers. If it doesn't * work on your try updating to a later version. */#top, #bottom{ width: 95% !important; background-size: 100% 26px !important; -o-background-size: 100% 26px !important; -webkit-background-size: 100% 26px !important; -khtml-background-siz: 100% 26px !important; -moz-background-size: 100% 26px !important;}/** * Sticks login bar to the top of the page so it doesn't scroll */#header-container{ margin: 25px auto 0px !important;}#bar{ position: static !important; height: 50px !important;}/** * Removes the footer logos (which is an ugly white box) * and the "forum lead by" information (which seems to be the same for all forums) */#footer-logos, #forum_led_by{ display:none !important; }By http://www.gamesas.com/index.php?/user/47451-qazaaq/ (Post #18):
This changes the CD background into the elder scrolls parchment:
body.fid_18, body.fid_19, body.fid_20, body.fid_21, body.fid_83, body.fid_99, body.fid_84, body.fid_100 { background:#000 url('http://static.zenimax.com/forums/images/public/style_images/zenimaximg/games/elderscrolls/elderscrolls-background.jpg') fixed 50% 0 !important;}Also, for this to work in firefox you need an additional background size statement: -moz-background-size
Also by http://www.gamesas.com/index.php?/user/47451-qazaaq/ (Post #38):
/** *This moves the Bethesda Softworks logo at the top of the CD board and the board index to the upper left corner instead of half in the center. It shouldn't affect other boards. */body.fid_18 #header-container, body.fid_0 #header-container { width: 90% !important; }By http://www.gamesas.com/index.php?/user/47451-qazaaq/ (Post #92):
/** * Moves the filter bar (bottom of the list of topics) onto one line rather than two */div#forum_filter fieldset br { display: none !important; }--------------------------------------------------------------------------------------
Greasemonkey Scripts
--------------------------------------------------------------------------------------
This https://addons.mozilla.org/firefox/addon/748 script adds a CD link to the main page. It also works on Chrome 5, at least on Linux just save it to the filesystem as anything.user.js and then drag the file onto an open page.
// ==UserScript==// @name Bethesda Forum CD Link// @namespace http://yacoby.net// @description Adds CD link to bethesda forum main page// @include http://www.gamesas.com/// @include http://www.gamesas.com/?// @include http://www.gamesas.com/index.php?// @include http://www.gamesas.com/index.php?/index// ==/UserScript==var div = document.createElement("div");div.setAttribute("class","category_block block_wrap cidp_61");div.setAttribute("style","margin-bottom:0;padding:0;");var h3 = document.createElement("h3");h3.setAttribute("id","category_61");h3.setAttribute("class","maintitle");var a = document.createElement("a");a.setAttribute("href","http://www.gamesas.com/index.php?/forum/18-community-discussion/");a.setAttribute("id","cid_61");a.setAttribute("style","background:none;");a.innerText = "Community Discussion";div.appendChild(h3);h3.appendChild(a);document.getElementById("categories").appendChild(div); 