HowTo:Mess up Uncyclopedia/2
Jump to navigation
Jump to search
Using the CSS in the previous page, we can see that now the
- list items
- list items
- list items
- numbered list items
- numbered list items
- numbered list items
are also in Comic Sans MS. However,
Section header
and
Subsection header
are still in their default fonts. You'd really want to change these. Dang, the code's here.
{{#css: p, li, h1, h2, h3, h4, h5, h6 { font-family: Comic Sans MS; } }}
In the code, h1
is article title, h2
is section header, h3
is subsection header, h4
is subber-section header, h5
is even-subber-section header, and h6
is subbest-section-header. For some fun, lets make them in the Impact font instead.
{{#css: p, li { font-family: Comic Sans MS; } h1, h2, h3, h4, h5, h6 { font-family: Impact !important; } }}
The !important makes it more important than anything else, except other !important properties.