I have this kind of checkbox on my site atleast 4 checkbox
<div id="product">
<div class="checkbox">
<label>
<input type="checkbox">
<img src="http://test.com/dev/image/cache/catalog/chains/chain_1-50x50.jpg" alt="Chain 1 +₱10.00" class="img-thumbnail">
Chain 1 (+₱10.00)
</label>
</div>
</div>
How can I add css that when I select the checkbox, the image will add some border and the text will be bigger
I have this code but does not work
#product :checked + label {
font-weight: bold;
}
#product :checked + img{
border:1px solid red
}