I don't want to change my H1 settings in my style sheet. I simply want to change the font of one H1 paragraph in the page editor. How can change the font without creating a new style? There is now "Word" like font selection tool. I still want to use H1.
osu9400,
Try using inline styles on that H1 tag. For example:
<h1 style="color:#333;text-transform:uppercase;">This is my text</h1>
Keep in mind that depending on what the style sheet is declaring for the h1 tag you may need to override some of them. For example if the style sheet declares all h1 tags have a border and you don't want a border on this new inline style be sure to declare the border style with no border.
<h1 style="color:#333;text-transform:uppercase;border:none;">This is my text</h1>
Hope this helps.
That was perfect. Thanks. Why doesn't the editor have those functions built in?