Forum Moderators: not2easy
Add another class and call it when desired:
CSS:
.left-header {text-align: left;}
HTML:
Change each header individually:
<h1 class="left-header">
Or if it is all headers in the page add another style sheet and call it after the usual one:
CSS:
left-header.css (file containing only:)
h1, h2, h3, h4, h5, h6 {text-align: left;}
HTML:
<head>
<style type="text/css" media="all">@import "main.css";</style>
<style type="text/css" media="all">@import "left-header.css";</style>
</head>
<h1 style="text-align: left;">Blah</h1>
...in the tag for the element.
Now excuse me while I go hang my head in shame for even hinting at a suggestion of the notion of an idea that this would be a good way to do it (translation: although you can use inline styles, please DON'T. They are cluttery and unclean. Define a new style class and use it when needed, as iamlost suggested above.)