Hi, I run a multi-author blog and am trying to figure out how to have each author's posts show up in different colors (i.e. - a different color background and probably font for each author). I was able to do this in other themes, but I cannot figure out where to enter <div>s for each author without the Atahualpa theme erroring out or posting doubles of each post. There might also be a much easier way with the new wordpress author tags.
The usual way I have done it in the past is by editing a div to <?php the_author() ?> and then editing each author in the CSS. I cannot get any CSS modifications to apply to any pages, and I do not think it recognizes authors despite my intentions.
I have also been attempting to go off of code listed here:
http://forum.bytesforall.com/showthr...ighlight=color
but I cannot even get individually numbered posts to change their background unless I use this:
Code:
div#post-2456 {
background: #123456;
}
no other format seems to work. I am sure I am probably missing something very simple. Thanks for any help.