I have custom radio buttons which I've borrowed from this website: http://www.inserthtml.com/2012/06/custom-form-radio-checkbox/
Unfortunately, I'm using a helpful plugin which I cannot easily modify which populates my DOM with a nested input inside the label such that...
<label>
<input class="regular-radio">
I would like to use the selector .regular-radio + label to select the label. However, it only works with:
<input class="regular-radio">
<label>
I've demonstrated my example here: http://jsfiddle.net/BR3MB/
How might I modify that CSS to work off the parent label rather than an adjacent one?
I'd be really troubled to edit the DOM in this case, since there is much relying on that structure already.