No será que no tienes declarado un doctype. Sin doctype no funciona en iexplorer 7 ni 8. Con doctype sí funciona, pero de todas formas en iexplorer 6 no funciona la propiedad fixed.
Tu código con doctype (funcionando en ie7 y 8):
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Barra de usuario</title>
<style type="text/css">
.barra_usuario{
width:90%;
height:2%;
background-color:#5b5b5b;
padding:5px;
position: fixed;
bottom: 0;
left: 4%;
border-style:solid;
border-width:1px;
border-bottom: 0px;
border-color:#000000;
overflow: hidden;
}
</style>
</head>
<body>
<div class="barra_usuario">Barra de usuario</div>
</body>
</html>
Para que funcione en ie6 tienes que buscar un hack.
Bye