• Resolved liabungalo

    (@liabungalo)


    I can’t seem to get the left column and the center column of my Web site to line up. I’ve played with the settings but nothing seems to work. I really didn’t care at first, but now that I’ve added tabs, it’s kind of noticeable. Is there an easy fix.

    the site is http://www.lifeinabungalo.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • Just use:
    #content{
    float: right;
    width: 410px;
    padding: 5px;
    margin-top:5px;
    }

    #contentright2{
    float: left;
    width: 160px;
    padding: 5px;
    margin-top:10px;
    border: 1px solid Gray;
    }
    Just keep the margin-top 5px larger in the contentright2 div.
    OR


    #content{
    float: right;
    width: 410px;
    padding: 5px;
    padding-top:0;
    }

    And give both divs the same margins.

    Thread Starter liabungalo

    (@liabungalo)

    Thank you. You rock.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can’t get columns to line up’ is closed to new replies.