Hi,
i have this page.
When I choose a day instead of "Dia:" in "Fecha de nacimiento" the form moves a little (at least in Firefox/Ubuntu).
Is a CSS problem?
Regards
Javi
Hi,
i have this page.
When I choose a day instead of "Dia:" in "Fecha de nacimiento" the form moves a little (at least in Firefox/Ubuntu).
Is a CSS problem?
Regards
Javi
When the width of the select
box changes, the width of the containing form also changes. If you set an explicit width
on the select box, it won't happen:
<select id="register_fecha_nac_day" name="register[fecha_nac][day]" style="width: 4em;">
Javi,
You might want to start with getting rid of the table that holds your form as there is no reason for it.
The form moves because the select box doesn't have a width defined so the width changes when the content changes.