Sorry for the delay in this reply, the notifs got lost.
Anyway, to change the position of the userpics, you just need to tweek the margin of the userpic class, it'll be listed as something like: .userpic{ margin: 0 0 0 0; }
The numbers go in order of top, right, bottom, left, in a clockwise direction. You'd most likely put a negative number in the left number to push it out of the box
.userpic{ float: left; margin: 0 0 0 -150px; }
Like that. To have it alternate like in your illustration, you will need to target every even entry using this class .entry-wrapper-even, and make the negative margin be in the right number, and will need to change the float:
no subject
Anyway, to change the position of the userpics, you just need to tweek the margin of the userpic class, it'll be listed as something like:
.userpic{
margin: 0 0 0 0;
}
The numbers go in order of top, right, bottom, left, in a clockwise direction. You'd most likely put a negative number in the left number to push it out of the box
.userpic{
float: left;
margin: 0 0 0 -150px;
}
Like that. To have it alternate like in your illustration, you will need to target every even entry using this class .entry-wrapper-even, and make the negative margin be in the right number, and will need to change the float:
.entry-wrapper-even .userpic{
float: right;
margin: 0 -150px 0 0;
}
Your numbers may be different though, so please mess around with them until it looks right for you if those don't.