• Resolved renohelper

    (@renohelper)


    Ok, I assume that the formatting for new posts (and pages), is set out in the CSS – correct? If so, I need to know where to edit the CSS (Currently I only have access to the CSS for my custom theme.) for these blank posts. Specifically I want to do this:

    Change the size of the font for just one letter, and not the entire word or paragraph. How do I do this?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Put this in the stylesheet of your theme:

    .oneletter
    {
    font-size:15px;
    }

    Then in your blog posts/pages do this:

    <span class=”oneletter”>O</span>nce upon a time…

    You can change the size and the color too if you want the larger letter to be a different color than the rest of the text.

    .oneletter
    {
    font-size:15px;
    color:#cococo;
    }
    Thread Starter renohelper

    (@renohelper)

    oh, that did not work.

    How about if I am creating a post, I have the abliity already to change the font colors, but where is the abilbity to change the font size in the post editor? I think it would be much easier if I just did the font size change on this one post, and not the CSS, because I probalby won’t be doing it too often anyway.

    Hmmm. What I posted above worked great for me when I tested it.

    I think it would be much easier if I just did the font size change on this one post, and not the CSS, because I probalby won’t be doing it too often anyway.

    It’s just one change to the stylesheet that can be there whether you use it or not.

    Ah wait you’re using the visual editor aren’t you. I tested that way and it didn’t work. Do it this way. Switch over to html instead of visual, copy and paste

    <span class=”oneletter”>O</span>nce upon a time…

    switch back to visual and save. I just tried that and it works.

    Thread Starter renohelper

    (@renohelper)

    THANK YOU IT WORKED GREAT!!!

    Here is how it turned out: http://renohelper.com/blog/wordpress/2008/09/19/creating-smart-goals/

    Awesome 🙂

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Editing Post and Pages…’ is closed to new replies.