2 replies
  • WEB DESIGN
  • |
Hey warriors iv been building a site but have come to a stand still i can not get the alignment correct image below shows what i mean hope some one can help with how to fix this problem.




as you can see both are off alignment how do i fix this? please help
#stuck
  • Profile picture of the author OBaz
    It's difficult to tell without looking into the site code itself. Can you provide the link to the site? Guesswork won't do you any good.
    {{ DiscussionBoard.errors[4914484].message }}
  • Profile picture of the author OBaz
    Sorry, couldn't PM you, haven't got a post count up yet, so I'll post here:

    top panels are level with each other...

    In your "style.css" file on line 190 (if you open "style.css" in text editor that shows numbers of lines) change margin value only:

    from margin: -15px 0 0 5px; to margin: -21px 0 0 5px;

    So your code should look like this:

    .right-content {
    float: right;
    margin: -21px 0 0 5px;
    width: 676px;


    }



    ================================================== ======

    For bottom panel change on line 252:
    from margin-top: 1px; to margin-top: 19px;

    So your code should look like this:

    .right-box3 {
    background: url("images/right-box3.png") repeat scroll 0 0 transparent;
    height: 268px;
    margin-top: 19px;
    padding-top: 5px;
    width: 653px;


    }

    =======================

    text runs off the page...

    change to padding: 1px 10px; on line 558

    .rc-history {
    background: url("images/history.png") repeat scroll 0 0 transparent;
    height: 1128px;
    margin-top: 17px;
    padding: 1px 10px;
    width: 627px;


    }
    {{ DiscussionBoard.errors[4915436].message }}

Trending Topics