Quote Originally Posted by jettrue View Post
I've found a better way to address this issue, and this is how I will fix it in the next release of this template.

in includes/templates/YOUR_TEMPLATE/css/stylesheet.css change:

Code:
input[type=checkbox], input[type=radio] {
    float:left;
    }
to

Code:
html>body input[type=checkbox], html>body input[type=radio] {
    float:left;
    }
and change:

Code:
.checkboxLabel, .radioButtonLabel {
    margin:.3em;
    float:left;
    }
to:

Code:
html>body .checkboxLabel, html>body .radioButtonLabel {
    margin:.3em;
    float:left;
    }
It's an IE hack, but this will allow you to keep the normal width for the create account section, vs. swedging it down for IE (which makes it too narrow in Firefox and others)
I found the 2nd code as below with LABEL before the dot.

Code:
LABEL.checkboxLabel, LABEL.radioButtonLabel {
    margin:.3em;
    float:left;
    }
so pls advice.. Thanks