• 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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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.

    Thread Starter osu9400

    (@osu9400)

    That was perfect. Thanks. Why doesn’t the editor have those functions built in?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Edit H1 style on one page without editing style sheet?’ is closed to new replies.