Forums

Plugin or something for more post formatting options (4 posts)

  1. fabio26
    Member
    Posted 3 years ago #

    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 http://www.fierceugly.com

    Some paragraphs are spaced out more then others

  2. ginntonic
    Member
    Posted 3 years ago #

    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.

  3. ginntonic
    Member
    Posted 3 years ago #

    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!

  4. fabio26
    Member
    Posted 3 years ago #

    Thanks, I'll check it out.

Topic Closed

This topic has been closed to new replies.

About this Topic