• youreviltw1n

    (@youreviltw1n)


    Is it possible to set it up so each user has a different font style or color? Or have a picture that will always show up when they post?
    I only plan on having 5 authors and I want them to be distinct.

Viewing 3 replies - 1 through 3 (of 3 total)
  • prjg

    (@iiiiiiiv)

    Different fonts? Probably, but it’d involve conditional parsing and stuff. You could always assign an avatar to them. There’s a bunch of plug-ins that’ll enable that.

    Alex Mills

    (@viper007bond)

    Give posts a CSS class within your Loop.

    <div class="post author<?php echo $post->post_author; ?>">

    Then define it:

    .author1 {
    /* some crap here for author ID #1 */
    }
    .author2 {
    /* some crap here for author ID #2 */
    }

    Thread Starter youreviltw1n

    (@youreviltw1n)

    As I am not so hot with coding and such, where should I put that info? Stylesheet, header, etc?

    Thanks for the help, by the way.

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