Re: [css-d] input[type="checkbox"]:checked+label not working

2014-09-23 Thread Chris Rockwell
Hey Matthew, If you look at the stylesheet in Chrome dev tools you'll see a red dot after both of the styles in question - deleting it solves the issue. A search suggests that it's unicode characters inserted by server side code: http://stackoverflow.com/a/23511935 Chris Chris Rockwell On Tue,

[css-d] input[type="checkbox"]:checked+label not working

2014-09-23 Thread lobo
Hello, I'm working on a form, and as the user checks items I want the label to change color. I seem to be able to do this fine with radio buttons by adding the following to my css: input[type="radio"]:checked+label {} However I haven't been able to me the same thing work for checkboxes