previous | index | next

Using CSS Style Classes

The top static text component of the page uses a style class called title;
The second uses a style class called subtitle.

To define them, add the following to the stylesheet.css file:

.title {
  font-size: x-large;
  font-weight: bold;
}

.subtitle {
  font-size: medium;
  font-weight: bold;
}

Then use the property editor to add them to the respective components.

Use this CSS Reference to learn about CSS style properties and their values.


previous | index | next