Forum Moderators: open
Are you adding any style via CSS to either the
h1 or h2 tags? Dependent on your needs, your CSS file should contain rules for both tags. For example your CSS file could look something like: h1 {
font:20px Verdana, Arial, sans-serif;
text-align:center;
}
h2 {
font:20px Arial, Verdana, sans-serif;
text-align:left;
color:#c00;
background:transparent;
} Fix the CSS rules for each of your tags and the result will be displayed on every page where the stylesheet is linked.