#footer

Description

The footer at the bottom of all Wikidot pages. This does not include the license area.

Containers

Outline
Image Unavailable
Click to view in closer detail!

Details

The id #footer belongs to the <div> block that contains a Wikidot page's footer area. This is the part that on most Wikidot pages has "Powered by Wikidot.com", such as in the below footer. The footer does NOT however include the license area which is normally just underneath the footer. By modifying this id, you will modify this area on the bottom of every Wikidot page influenced by the CSS theme.

Examples

The footer on this page has been modified using CSS. Two borders were added using the following code:

#footer{
    border-top: 1px dotted #444;
    border-bottom: 1px dotted #444;
}

Try It on the CSS Zone Sandbox!

Base CSS

#footer{
    margin-top: 5px;
    padding: 3px 10px;
    clear: both;
    overflow: hidden;
}
 
#footer .options{
    float: right;
    font-size: 90%;
    padding: 1px 0;
 
}
 
#footer p {
    margin: 0.2em 0;
    padding: 0;
}

Not defined in Base CSS.

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License