
May 30th, 2003, 11:51 PM
|
 |
Contributing User
|
|
Join Date: Apr 2003
Location: Italy, EU
Posts: 517
Time spent in forums: 11 h 45 m 8 sec
Reputation Power: 11
|
|
You can do it using a code like the following one:
Code:
h3 {
font-size:10pt;
font-family:Verdana, Arial, sans-serif;
font-weight: bold;
color: white;
background-color: #4880C0;
line-height: 20px;
}
In this way you can later insert an H3 tag to have that effect. You can also set a MARGIN-RIGHT value to limit the width of the line.
If you don't want to modify the definition of a header (level 3 in this case), you can define a class (.TITLE) and then refer to it using the appropriate property in the desired tag.
i.e. <P CLASS="TITLE">
Bye, Magma
|