OK:
So our blog has four unique authors on it. On the server are four pictures; Rob.png, Joe.png, Steve.png and Sam.png. What we want is for Wordpress to change the style of the post TITLE based on who wrote it. Reason being, we want the image in the background to change based on who is typing. We are using the K2 theme.
I have the style perfectly under the H3 section, and here it is:
font-size: 2.4em;
font-weight: normal;
text-indent: 105px;
margin-top: 20pt;
padding-top: 22px;
padding-bottom: 0px;
letter-spacing: -1px;
width: 500px;
height: 64px;
background: url(http://www.ghosteo.net/wp-content/uploads/2008/08/joe.png) no-repeat;
background-size: auto;
The issue with leaving it as-is is that EVERYONE ends up with Joe's background.
What do I need to do in order to make word press call a different image when a new person posts?