Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×
User Journal

Journal mskfisher's Journal: My Slashdot CSS 2

Here's my Firefox userContent.css for Slashdot. It'll probably go through a couple more iterations, but I'm fairly happy with the results:

Update (20050927 2123GMT):
Added code to fix the titles in sections, like http://politics.slashdot.org/
Also removed the ad that sometimes displays between the story and comments.
See my comment below for a description of how to use this.

@-moz-document domain(slashdot.org)
{
        body
        {
                font: 10pt tahoma !important;
        }
 
.ad1
        {
                display: none !important;
        }
 
        #frame
        {
                width: 900px !important;
                margin: 0 auto !important;
        }
 
        #logo>h1>a
        {
                width: auto !important;
                height: auto !important;
                background: transparent !important;
                text-indent: 1em !important;
        }
 
        #advertisement-title, #advertisement-content
        {
                display: none !important;
        }
 
        #topnav
        {
                height: auto !important;
        }
 
        div#topnav>ul>li>a
        {
                width: 40px !important;
                height: 40px !important;
        }
 
        div#topnav>ul>li>a>img, div.topic>a>img
        {
                height: 40px !important;
                width: auto !important;
        }
 
        div#articles
        {
                margin-top: 0.1em !important;
        }
 
        div.title
        {
                background-image: none !important;
                padding-left: 0px !important;
        }
 
        div.title>h3
        {
                padding-left: 16px !important;
        }
 
        div.storylinks
        {
                margin-top: 0em !important;
        }
 
.article h3, .generaltitle h3
        {
                padding-bottom: 0.1em !important;
        }
 
        #slashboxes #olderstuff-content ul li a
        {
                font-size: 1em !important;
                font-weight: 900 !important;
        }
 
        div#links-loggedin-title h4
        {
                padding-bottom: 0.1em !important;
        }
 
        div.ad6
        {
                display: none !important;
        }
}

This discussion has been archived. No new comments can be posted.

My Slashdot CSS

Comments Filter:

"Protozoa are small, and bacteria are small, but viruses are smaller than the both put together."

Working...