RE: Does not work in IE
the problem was that the menu code read
.menu {
background: url(images/menu.gif);
background-repeat: no-repeat;
border: 0px #a0d406 solid;
vertical-align: top;
text-align: center;
width: 172px;
padding: 5px;
}
the width specified is too small so its meant to read
.menu {
background: url(images/menu.gif);
background-repeat: no-repeat;
border: 0px #a0d406 solid;
vertical-align: top;
text-align: center;
width: auto;
padding: 5px;
}
a specific width wouldve worked too, what else is not working?
This post was edited on 10-01-2005 at 03:43 PM by hmaster.
|