6
I guess you wanted to have it as h1 for search engines.
Just edit the css file of the theme you are using. If you are using multiple themes, this will mean changes to EACH css file, as otherwise, on of your themes will continue to display it in the old way.
You will need to open
/ROOT/themes/THEMESELECTEDINPREF/style.css, look for the following part (let your editor search for
itemTextQuote:
.itemText {
padding: 4px;
border-left: 2px solid #D9CBB3;
margin-top: 0px;
margin-bottom: 0px;
line-height: 1.5em;
}
Insert the following line inbetween the curly bracket:
Quote:
This should do the trick, and let you continue using h1 to mark up your news.
TIPQuote:
.itemText:first-letter {}
This can be set to have the first letter of your news article appear larger (or smaller - if some wants it that way). Try it out, e.g.:
Quote:
.itemText:firt-lett {24px;}
Happy CSS'ing