Multiple Fonts per post

  • Unknown's avatar

    i bought the custom upgrade to be able to use multiple fonts in any given post. but i cant for the life of me figure out how to do that. any help?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    The custom design upgrade is for overall styling. To style individual posts, you need to do it via HTML in the post editor using style declarations in p tags, or span tags. See this support document on changing fonts and colors from within the post/page editor.

    You could define the styles in the CSS, and then call out the class in a p or span tag from within the post. Example:

    This would go in your CSS (define a new class of style)

    ‘.my-red-font {
    font-family: Arial, Helvetica, “Helvetica Neue”;
    font-size: 120%;
    color: #CC0000;
    font-weight: bold;
    font-style: italic;
    }`

    This would be what you would do to change a paragraph to the above style in the text tab of the editor.

    <p class="my-red-font">All the paragraph text here</p>

  • Unknown's avatar

    Sorry, messed up my CSS code tagging:

    .my-red-font {
    font-family: Arial, Helvetica, "Helvetica Neue";
    font-size: 120%;
    color: #CC0000;
    font-weight: bold;
    font-style: italic;
    }
  • The topic ‘Multiple Fonts per post’ is closed to new replies.