Most recent comments
2021 in Books -- a Miscellany
Are, 2 years, 2 months
Moldejazz 2018
Camilla, 4 years, 8 months
Romjulen 2018
Camilla, 5 years, 2 months
Liveblogg nyttårsaften 2017
Tor, 6 years, 2 months
Liveblogg nyttårsaften 2016
Are, 7 years, 2 months
Bekjempelse av skadedyr II
Camilla, 2 months
Kort hår
Tor, 3 years, 2 months
Ravelry
Camilla, 2 years, 9 months
Melody Gardot
Camilla, 4 years, 8 months
Den årlige påske-kommentaren
Tor, 4 years, 11 months
50 book challenge
Camilla, 2 months, 3 weeks
Controls
Register
Archive
+ 2004
+ 2005
+ 2006
+ 2007
+ 2008
+ 2009
+ 2010
+ 2011
+ 2012
+ 2013
+ 2014
+ 2015
+ 2016
+ 2017
+ 2018
+ 2019
+ 2020
+ 2021
+ 2022
+ 2023

Custom CSS, v.2

I've made a slight change to the way the page loads custom css. Earlier, this css was loaded instead of the regular one, now it is loaded after the regular one. This means that any styling you enter will override the corresponding styling in the standard css, while leaving the rest. This gives a lot of flexibility in creating your personal style.

For example, the standard styling of the main background is:

body{background-color:#9DA963}

To override this, you would add something like
body{background-color:#335588}

to the custom css box in your profile. Similarly, you can change the background of the center column by adding
.article_box{background-color:#9DA963}

The background of an article:
.article{background-color:#9DA963}

The side columns:
.column_box{background-color:#9DA963}

It is even possible to set a background image for any of these things:
body{
background: url(http://www.presskanne.com/kaffe_stor.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

If you end up with something you feel would be of interest to others, please let me know, and we can consider turning it into a selectable standard style. Also please let me know if you find anything wrong and/or annoying about the html and the classes and ids and so on.

-Tor Nordam

Versions:

Version 1

Tor, 23.01.11 22:38

Version 2

Tor, 23.01.11 23:01