• Hey there everyone. I’m wondering if someone could please help me, seen as my searching has turned me up empty. I’m wondering if there is any way to do these two things:

    1) I have custom feilds set up for “current mood”, and “currently procrastinating” and other such things, and I’m wondering if there is any way to make each entry appear on a seperate line, or so that they are spaced away from each other a bit.

    2) Is there any way to make the title of the tag different from the value (e.g. <B> current mood:</B> happy!)

    To see what I’ve done, my web addy is: http://blog.ordinarylife.co.nz

    Thanks in advance for your help!
    (Ps, I’m not too hot with php etc, so will probably ask lots of questions if I don’t understand!! – Cheers!)

Viewing 3 replies - 1 through 3 (of 3 total)
  • I believe this is a css thing rather than php. Here’s what to do:

    First, make a copy of wp-layout.css (just in case this doesn’t work) and set it aside in another folder. Now open wp-layout.css in a text editor (notepad) and look for


    .meta li, ul.post-meta li {
    display: inline;
    }

    Change it to:

    .meta li {
    display: inline;
    }

    ul.post-meta li {
    display: block;
    }

    Then upload the edited file to your wordpress folder. I hope that works!

    For more about css and stylesheets, here are some good references:
    http://www.meyerweb.com/eric/css/
    http://www.htmlhelp.com/reference/css/

    Thread Starter sproke

    (@sproke)

    FANTASTIC!! Thank you ever so much!! *hugs* Now I knwo where to look to play around with the formatting. CHEERS!!

    You’re very welcome, Sproke. Glad it is working for you!

    Here is another site that is specifically about styling WordPress:
    http://www.tamba2.org.uk/wordpress/graphicalcss/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Custom Fields’ is closed to new replies.