• I have two questions about using WordPress.
    1. When typing the text in my blog, what is the code to put in a paragraph indent at the beginning of a line? I’m putting some of my poetry on my blog, and the indent is quite important…
    2. Is there a way so that when someone goes to my blog, initially only my general category entries show? I have a lengthy thesis on my blog, and I want it off the ‘main’ page.
    Thanks! 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • 1. I use CSS
    .storycontent p {
    text-indent: 3em;
    font: 100%/130% arial, verdana, ‘lucida sans unicode’, sans-serif;
    color: #ccc;
    }
    That indents all first para lines.

    Yes. Just set the number of posts to appear on the first page to be low lets say five (5). Put in 5 short poems after your thesis. Or alternatively backdate the thesis with edit datestamp. Dirty but effective.

    Thread Starter atreus

    (@atreus)

    Thanks for the answers. 🙂
    Where should I insert this? I’m pretty new to the WordPress thing…
    Quote:
    .storycontent p {
    text-indent: 3em;
    font: 100%/130% arial, verdana, ‘lucida sans unicode’, sans-serif;
    color: #ccc;
    }

    It is always safest to put new css selectors at the bottom of wp-layout.css after everything else. Just paste it in there.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Two questions’ is closed to new replies.