
Journal Journal: How to change Slashdot's (And other sites) color scheme 4
The sample I attached changes all of the section colors to black background for titles, with a light grey background for other areas. You can easily customize it based on what you want to see, just change the RGB color values.
Add the following to your userContent.css file. If you're unsure how to do that, check out the instructions, here.
If anyone knows how to replace images (Like the specialized Slash title in the Apple & Games sections), or make the link color change, please post a comment and let me know. This just shows the flexibility of Mozilla, and open source products in general.
-------------
/* Make Slashdot look decent
* By Chris Wilson
* Append to your userContent.css file, and restart your browser to take effect
*Sections*//*Main*/
*[bgcolor*="#006666"] {background-color: #000000 !important;}
*[color*="#006666"] {color: #000000 !important;}/*Apache*/
*[bgcolor*="#660066"] {background-color: #000000 !important;}
*[color*="#660066"] {color: #000000 !important;}
*[bgcolor*="#cc6666"] {background-color: #d3d3d3 !important;}
*[color*="#cc6666"] {color: #d3d3d3 !important;}/*Apple*/
*[background*="stripe_background.gif"] {background-image: url(http://www.hanstkd.com/images/belts/white.jpg) !important; background-color: #d3d3d3 !important}
*[background*="slashbar.gif"] {background-image: url(showNothing.gif) !important;}
*[background*="apslc.gif"] {background-image: url(showNothing.gif) !important; background-color: #000000 !important;}/* - For the top left Slashdot title
img[src*="games-title.gif"] {img-src: url(http://images.slashdot.org/title.gif) !important;}*/
*[bgcolor*="#006666"] {background-color: #000000 !important;}
*[color*="#006666"] {color: #000000 !important;}/*Articles - Same as main page, for now*/
*[bgcolor*="#006666"] {background-color: #000000 !important;}
*[color*="#006666"] {color: #000000 !important;}
*[bgcolor*="#cccccc"] {background-color: #d3d3d3 !important;}
*[color*="#cccccc"] {color: #d3d3d3 !important;}/*Ask*/
*[bgcolor*="#666666"] {background-color: #000000 !important;}
*[color*="#666666"] {color: #000000 !important;}
*[bgcolor*="#CCCCCC"] {background-color: #d3d3d3 !important;}
*[color*="#CCCCCC"] {color: #d3d3d3 !important;}/*Books - Same as main page, for now*/
*[bgcolor*="#006666"] {background-color: #000000 !important;}
*[color*="#006666"] {color: #000000 !important;}
*[bgcolor*="#cccccc"] {background-color: #d3d3d3 !important;}
*[color*="#cccccc"] {color: #d3d3d3 !important;}/*BSD*/
*[bgcolor*="#990000"] {background-color: #000000 !important;}
*[color*="#990000"] {color: #000000 !important;}
*[bgcolor*="#cccccc"] {background-color: #d3d3d3 !important;}
*[color*="#cccccc"] {color: #d3d3d3 !important;}/*Developers*/
*[bgcolor*="#336699"] {background-color: #000000 !important;}
*[color*="#336699"] {color: #000000 !important;}
*[bgcolor*="#e0e0e0"] {background-color: #d3d3d3 !important;}
*[color*="#e0e0e0"] {color: #d3d3d3 !important;}/*Features - Same as main page, for now*/
*[bgcolor*="#006666"] {background-color: #000000 !important;}
*[color*="#006666"] {color: #000000 !important;}
*[bgcolor*="#cccccc"] {background-color: #d3d3d3 !important;}
*[color*="#cccccc"] {color: #d3d3d3 !important;}/*Games*/
*[background*="games-slashbar.gif"] {background-image: url(showNothing.gif) !important;}
*[background*="games-slc.gif"] {background-image: url(showNothing.gif) !important; background-color: #000000 !important;}/* - For the top left Slashdot title
img[src*="games-title.gif"] {img-src: url(http://images.slashdot.org/title.gif) !important;}*/
*[bgcolor*="#3300cc"] {background-color: #000000 !important;}
*[color*="#3300cc"] {color: #000000 !important;}/*Interviews - Same as main page, for now*/
*[bgcolor*="#006666"] {background-color: #000000 !important;}
*[color*="#006666"] {color: #000000 !important;}
*[bgcolor*="#cccccc"] {background-color: #d3d3d3 !important;}
*[color*="#cccccc"] {color: #d3d3d3 !important;}/*Polls - Same as main page, for now*/
*[bgcolor*="#006666"] {background-color: #000000 !important;}
*[color*="#006666"] {color: #000000 !important;}
*[bgcolor*="#cccccc"] {background-color: #d3d3d3 !important;}
*[color*="#cccccc"] {color: #d3d3d3 !important;}/*Science - Same as main page, for now*/
*[bgcolor*="#006666"] {background-color: #000000 !important;}
*[color*="#006666"] {color: #000000 !important;}
*[bgcolor*="#cccccc"] {background-color: #d3d3d3 !important;}
*[color*="#cccccc"] {color: #d3d3d3 !important;}/*YRO*/
*[bgcolor*="#663300"] {background-color: #000000 !important;}
*[color*="#663300"] {color: #000000 !important;}
a:link[link="#663300"] {color: #006666 !important;}
*[bgcolor*="#CCCC66"] {background-color: #d3d3d3 !important;}
*[color*="#CCCC66"] {color: #d3d3d3 !importa
-------------
Any comments or ideas are welcome.