CSS » Advanced headers
Insert this code chunk on your hl page (internal css). Don't forget to put the style tags at the top and bottom of the chunk. Remember to remove the red comments.
The CSS
This is a suggestion, you may change any values and add more or remove tags. I use span classes instead of header tags (h1) as HL sometimes show a h1 "text" (no text, but a border or whatever) at the bottom of your editable page.
.header1 {
font-size: 30px;
color: #99b3d3;
font-family: 'monotype corsiva', 'times new roman';
margin-bottom: 0;
margin-top: 23px;
padding: 0;
line-height: 15px;
display: block;
}
.header2 {
font-size: 14px;
color: #4c5263;
line-height: 10px;
margin: 0px 0px 0px 28px;
font-family: 'times new roman';
font-style: italic;
font-weight: bold;
display: block;
}
Play around with the different settings to make your own personal heading.
The Horseland code
Now, insert this code where you want the headers:
<span class="header1">Updates</span>
<span class="header2">Anything going on?</span>