css ie6 disaster

Out of context: Reply #5

  • Started
  • Last post
  • 6 Responses
  • Stugoo0

    if you dont want the background to repeat use.

    background:url() no-repeat;

    or
    background:url() repeat-x; to repeat on the horizontal axis

    or
    background:url() repeat-y; on the vertical axis.

    the positioning is not how i would build that site if you want the box fixed height and width in the center of the page try this :

    #centerColum {
    width:870px;
    height: 544px;
    left: 50%;
    top: 50%;
    position: absolute;
    margin-left: -435px;
    margin-top: -277px;
    padding: 0;
    font-family: Arial;
    border:3px solid #fff;
    background-image: url(images/homebgnew.jpg) no-repeat;
    }
    your menu i haven't looked at but feel free to email me about a centrally aligned layout.

    peace.

View thread