Awesome. Now where would you suggest this go? I currently have this in forums.css:
.cPost.ipsComment .ipsType_richText {
padding-top: 8px;
padding-left: 30px;
width: 640px;
background: url(../resources/forumBubbleGrey.png) left top no-repeat, url(../resources/forumBubbleGrey.png) right bottom no-repeat, url(../resources/forumBubbleGrey.png) center top repeat-y;
}
.cPost.ipsComment > .cPost.ipsComment{
margin: 0px;
background:none;
}
However I can't seem to figure out how to make it call this for regular users like in your example code. If it helps, this is what my 3.4 style's ipb_styles.css looked like for the backgrounds:
.post_body {
margin: 0 10px 0 136px;
padding-top: 8px;
width: 640px;
background: url({style_images_url}/forumBubbleGrey.png) left top no-repeat, url({style_images_url}/forumBubbleGrey.png) right bottom no-repeat, url({style_images_url}/forumBubbleGrey.png) center top repeat-y;
}
.post_body > .post_body{
margin: 0px;
background:none;
}
.post_body.mod {
background: url({style_images_url}/forumBubbleGreen.png) left top no-repeat, url({style_images_url}/forumBubbleGreen.png) right bottom no-repeat, url({style_images_url}/forumBubbleGreen.png) center top repeat-y;
}
.post_body.admin {
background: url({style_images_url}/forumBubbleGold.png) left top no-repeat, url({style_images_url}/forumBubbleGold.png) right bottom no-repeat, url({style_images_url}/forumBubbleGold.png) center top repeat-y;
}