• Ok, I searched for font plugin, formatting plugin with no joy. Is there a plugin or something that I can instal lthat will give me a few more options when it comes to formatting my posts? I need a bit more then Heading 1,2,3,4 etc.

    Also, when I post in visual mode sometimes I have to enter two or three spaces instead of one between paragraphs. And some times when I indent once I hit update the paragraphs are indented. What’s up with that? Is that just the way it is or am I doing something wrong?

    Check it out https://www.fierceugly.com

    Some paragraphs are spaced out more then others

Viewing 3 replies - 1 through 3 (of 3 total)
  • You’re talking about CSS, not a WordPress function or plugin for the WYSIWYG writer. The theme you’re using has a style.css file; you can set global paragraph parameters to change the way WP displays the_content().

    e.g.

    p{
        font-family:Tahoma,Verdana,sans serif;
        color:#999999;
        font-size:14px;
        line-height:20ox;
        margin:5px 10px 5px 10px;
    }

    etc etc.

    As for standardized spacing, I usually write in the HTML panel in the Admin section; the result is cleaner.

    As a quick follow-up, it seems like you have tons of empty paragraphs in your code.

    Take a peek at you website with Firebug and it shows you the margin (yellow) and padding (purple) of your paragraphs when you hover over their names in the console. You’ll also see a ton of empty <p></p> tags.

    Cheers!

    Thread Starter fabio26

    (@fabio26)

    Thanks, I’ll check it out.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Plugin or something for more post formatting options’ is closed to new replies.