Hi,
I have this page.
login: miguel@mail.com
pass: m
As you can see in IE6 the personal data goes down. In the rest of browsers no problem.
Any idea?
Regards
Javi
Hi,
I have this page.
login: miguel@mail.com
pass: m
As you can see in IE6 the personal data goes down. In the rest of browsers no problem.
Any idea?
Regards
Javi
I think it’s something to do with the widths and margins you’ve set to position the filtro div and the lista_miembros div.
Instead of
#lista_miembros {
margin-right:19em;
}
try this:
#lista_miembros {
float:left;
width:44em;
}
You can always have a separate CSS file for IE6 - I always do that - and give it different values.