
Originally Posted by
Alik
Great template!!!!! and i'm almost done editing... forund a problem and can't figure out how to fix:
link
The site looks great in FF but the content slides down in IE6
please help
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)