CSS » Internal CSS

Internal css means that you put the css code on the same page as the rest of the HTML. On horseland this is the only thing that works, you can't link external css sheets. You can insert the css code at the top or bottom of your code.

To tell the browser that it's CSS we're talking about, you have to use a certain tag:

<style type="text/css">

End it with this:

</style>

So let's say you want to use the scroll color code and the button colors code. Start with the starting tag, insert both code chunks, then end it with the end tag:

<style type="text/css">
body {
scrollbar-face-color:#C00000;
scrollbar-highlight-color:#40FF40;
scrollbar-3dlight-color:#FFFF00;
scrollbar-shadow-color:#40FFFF;
scrollbar-darkshadow-color:#FF40FF;
scrollbar-track-color:#800080;
scrollbar-arrow-color:#FF6600;
}

input {
border:1px solid #000000;
background:#C51515;
font-family:verdana;
font-size: 7pt;
color:#000000;
}

</style>

Insert all this on your hl page, preferably at the start or end of the HTML code.