Enter a query to search our site. Note that you can use "*" and "?" as wildcards. Enclosing more than one word in double quotes ("CSS Layout") will search for the exact phrase.

Column Composer Magic Font Styles

PVII is the leader in creative extensions for Dreamweaver.

CCM Tutorials and Videos Home

The CSS rules illustrated in this tutorial are based on the Style Theme 01 (Classic) CSS file. Each rule begins with .p7ccm01. If you are editing Style Theme 02 (Carbon), the rules would begin with .p7ccm02.

Font Family and size

Font-family and base font-size are set on the root (first) rule in your CCM style sheet:

.p7CCM01 {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: #000;
font-size: 14px;
margin: 0px auto 20px auto;
}

Change to suit.

Font-size is also declared on each column rule:

.p7ccm01-2col-auto-column1 {
float: left;
width: 50%;
font-size: inherit;
color: inherit;
}

The value inherit means that it will use the base font-size declared in the root rule, unless you change it to an explicit value. To override the base font-size, simply change the value from inherit to 12px (or whatever you would like).