Here is an example of what I have:
<div class="node node-blog">
<div class="field-item even">
<img src="image.png"/>
</div>
</div>
What I would like to do is apply a style to the img element only when inside the node-blog and field-item divs, but this does not work:
.node-blog .field-item img {float:right;}
Sure I am doing something wrong.
Thanks.