CSS » Faded 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.
.fadedheader {
font-family: times new roman;
Choose a font (Verdana, Arial, Times new roman, Tahoma, Georgia)
- what ever you want. Choose a true font type not one you have downloaded from the Internet. Those fancy fonts will not show for people who hasn't downloaded and installed that
font.
font-size: 12px;
Size of your header writing
letter-spacing: 1px;
How big distance you want between the letters
font-weight: bold;
Choose type of font, like italic, bold...
color: #000000;
Font color
line-height: 11px;
self explaining ;)
cursor: default;
Type of cursor
background: #FFFFFF;
Faded area color
border: 1px solid #000000;
Size/type/color of border around
width: 100%;
height: 10px;
filter: alpha(opacity=65, finishopacity=0, style=1);
Makes the header fade
text-decoration: none;
}
Then, insert these tags around the text you want as heading (on your horseland site), where you want the heading to show (in between your blah blah ;)
<span class="fadedheader">HEADER TEXT HERE</span><br>
Thanks Moonlight, for sharing the code with us :)