I want to reference one of the images in my container by id 'reg' without changing the properties of the others, how would I do that?
<div class="two_third lastcolumn">
<div class="container clients">
<div class="one_sixth"><a href="userProfile.php"><img src="../../images/reg.png" alt="" id="reg"/></a></div>
<div class="one_sixth"><a href="../../community/feedback.php"><img src="../../images/feedback.png" alt=""/></a></div>
<div class="one_sixth"><a href="../../resources/donation.php"><img src="../../images/donate.png" alt=""/></a></div>
<div class="one_sixth"><a href="userProfile.php"><img src="../../images/oneyear.png" alt=""/></a></div>
</div>
</div>
My guess would be something like
.clients img #reg {
...
}