Radio button height
how do I change the height of the radio buttons so they are all the same?
I already have the CSS asset below.
pre
.nightRadio .ui-controlgroup-controls {
width:100%;
}
.nightRadio .ui-radio {
width:33.33%;
}
.nightRadio label {
text-align:center !important;
}
/pre
.nightRadio is the radiobutton class name.
I've tried using
pre
.nightRadio {
height: 50px;
}
/pre
and
pre
.nightRadio .ui-controlgroup-controls {
height: 50px;
}
/pre
and
pre
.nightRadio .ui-radio {
height: 50px;
}
/pre
but this did not work