Override Styles

In addition to including your own stylesheets as described in the CSS section, you can also override existing styles on the page using inline styles. Do do this, add in a <style> tag at the beginning of your templates source and place the overrides within. To override the background color of the page for example, you would use

<style>
body { background-color:#c0c0c0 }
</style>