.post img {
float:right;
border:0px solid <?php echo $water_maincolor_1; ?>;
margin:0 0 0 0;
}
that aligns ALL images inside this <div class="post ...>` to the right.
.post leftpic {
float: left;
border:0px solid <?php echo $water_maincolor_1; ?>;
margin:0 0 0 0;
}
that doesnt do anything since lefttpic is not a tag.
Similarily, this wont work, as leftpic is not a tag:
leftpic {
float: left;
border:0px solid <?php echo $water_maincolor_1; ?>;
margin:0 0 0 0;
}
the above 2 examples assume you are doing this:
<leftpic src="http://www.blah.com/image.gif />
You arent.
img.leftpic {
float: left;
margin-right: 15px;
margin-bottom: 10px;
}
will work, as long as you do this:
<img class="leftpic" src="http://www.blah.com/image.gif />