Previously I made a thread asking how to get hovers to work and I got it going but my new problem is that the radio button and the label don't line up
html:
<label class="title">Are you attending school currently? <span class="req">*</span></label>
<label class="input-hover"><input class="radio" type="radio" name="schools" value="highschool" /> High School</label>
<label class="input-hover"><input type="radio" name="schools" value="cegep" /> CEGEP</label>
<label class="input-hover"><input type="radio" name="schools" value="college" /> College</label>
<label class="input-hover"><input type="radio" name="schools" value="university" /> University</label>
<label class="input-hover"><input type="radio" name="schools" value="noschool" /> Not in School</label>
"input-hover" class is for the hover...the "radio" class was just me messing with margins and line-height trying to get things to line up but no dice
html:
<label class="title">Are you attending school currently? <span class="req">*</span></label>
<label class="input-hover"><input class="radio" type="radio" name="schools" value="highschool" /> High School</label>
<label class="input-hover"><input type="radio" name="schools" value="cegep" /> CEGEP</label>
<label class="input-hover"><input type="radio" name="schools" value="college" /> College</label>
<label class="input-hover"><input type="radio" name="schools" value="university" /> University</label>
<label class="input-hover"><input type="radio" name="schools" value="noschool" /> Not in School</label>
"input-hover" class is for the hover...the "radio" class was just me messing with margins and line-height trying to get things to line up but no dice