Skip to content

Instantly share code, notes, and snippets.

@csakiistvan
Created September 15, 2013 15:04
Show Gist options
  • Select an option

  • Save csakiistvan/6571561 to your computer and use it in GitHub Desktop.

Select an option

Save csakiistvan/6571561 to your computer and use it in GitHub Desktop.
egyedi hatter egy gombhoz
<div>
<input type="checkbox" name="szeletelve" id="slices">
<label for="slices">
Szeletelve kérem
</label>
</div>
#order_right INPUT[type="checkbox"] + label{
display: inline-block;
background: url('../images/order_right_checkbox_off.png') no-repeat center left;
padding: 0px 0px 0px 32px;
cursor: pointer;
}
#order_right INPUT[type="checkbox"]:checked + label {
background: url('../images/order_right_checkbox_on.png') no-repeat center left;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment