Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Thanks for reading this, I have a menu which is centered by padding both left an right of the ul but I think that leaves a bit of white clear space in IE on the left

It looks ok in Chrome, Firefox and Opera but in IE (every version) has space and its not centered

here is the HTML

<div class="menu">
<ul>
<li id="current"><a href="#">Strona Glowna</a></li>
<li><a href="#">O nas</a></li>
<li><a href="#">Wlasciciel</a></li>
<li><a href="#">Kontakt</a></li>                
</ul>
</div>

And the css

.menu {
  border:none;
  border:0px;
  margin:0px;
  padding:opx;
  font: 100% Arial;
  font-size:14px;
  font-weight:900;
}
.menu ul {
  background:#333333;
  height:35px;
  list-style:none;
  margin:auto;
  padding:0 242px 0;
  }
.menu li {
    float:left;
    padding:0px;
    }
.menu li a {
    background:#333333 url("images/seperator.gif") bottom right no-repeat;
    color:#cccccc;
    display:block;
    font-weight:normal;
    line-height:35px;
    margin:0px;
    padding:0px 25px;
    text-align:center;
    text-decoration:none;
    }
    .menu li a:hover, .menu ul li:hover a {
        background: #FF0000 url("images/hover.gif") bottom center no-repeat;
        color:#FFFFFF;
        text-decoration:none;
        }

.menu li ul {
    background:#333333;
    display:none;
    height:auto;
    padding:0px;
    margin:0px;
    border:0px;
    position:absolute;
    width:225px;
    z-index:200;
    }
.menu li:hover ul {
    display:block;
    }
.menu li li {
    background:url('images/sub_sep.gif') bottom left no-repeat;
    display:block;
    float:none;
    margin:0px;
    padding:0px;
    width:225px;
    }
.menu li:hover li a {
    background:none;
    }
.menu li ul a {
    display:block;
    height:35px;
    font-size:12px;
    font-style:normal;
    margin:0px;
    padding:0px 10px 0px 15px;
    text-align:left;
    }
    .menu li ul a:hover, .menu li ul li:hover a {
        background:#2580a2 url('images/hover_sub.gif') center left no-repeat;
        border:0px;
        color:#ffffff;
        text-decoration:none;
        }
    .menu li ul #current {
    background:#2580a2 url('images/hover_sub.gif') center left no-repeat;
    border:0px;
    color:#ffffff;
    text-decoration:none;
    }
.menu p {
    clear:left;
    }   

A live demo can be found under adamlisik.co.uk/kantor

Thanks for all your help

share|improve this question
is your body centred? – hjpotter92 Apr 12 '12 at 21:51
4  
You seem to have a padding of opx instead of 0px in your CSS for .menu. – David Thomas Apr 12 '12 at 21:55

1 Answer

up vote 0 down vote accepted

You need to declare a doctype

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
share|improve this answer
Thanks that does the trick! – tomoosss123 Apr 13 '12 at 20:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.