wordpress - change text of label with image -
it's possible change text of label image? example, #unaestrella have text "unaestrella" , want clear text (or add image padding or similar) , show image http://www.domain.com/images/unaestrella.png. it's possible?
<ul class="radio_list"> <li> <label for="unaestrella"> <input id="unaestrella" type="radio" value="unaestrella" name="topics"/> unaestrella </label> </li> <li> <label for="dosestrellas"> <input id="dosestrellas" type="radio" value="dosestrellas" name="topics"/> dosestrellas </label> </li> </ul>
yes, it's possible use class
label
, because #unaestrella
id
have used input
, id
must unique, 1 id
must assigned 1 element.
css:
.unaestrella{ background : url('https://m.dominos.co.uk/m/iphone/assets/img/common/icon-single-small.png') no-repeat right; padding: 0 25px 0 0; cursor:pointer; }
html;
<label class="unaestrella" for="unaestrella"> <input id="unaestrella" type="radio" value="unaestrella" name="topics" /> </label>
Comments
Post a Comment