Z:Headings
Table of Contents

Things you need to know about headings:-

  1. There are Six of them to play with
  2. They are all picked up by the Table Of Contents thingy.
  3. You can assign different attributes to headings located in the Main Content, Nav Side, and Nav Top.

At the moment, I have played with H1,2 and 3. The rest are as in the default "Base" theme that we have extended

ONE

Two

Three

Four

Five
Six

Look for something like this in the CSS code

#main-content h1 
{
font-size: 320%;
font-weight: bold;
color: red;
font-family: arial,helvetica,sans-serif;
}

Like all good cats, they can be skinned in a number of ways. The example above shows the long winded way of doing it, but you can easily control each attribute

Whereas:-

h1,h2,h3,h4,h5,h6{
    font-family: "Trebuchet MS", Trebuchet, Verdana, Arial, Helvetica;
}

Will adjust all headings at the same time.
then you can change each on individually by adding something like
h1{
    font-size: 190%;
    }
h2{

    font-size: 150%;
}
page_revision: 6, last_edited: 1197028810|%e %b %Y, %H:%M %Z (%O ago)
Unless stated otherwise Content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License