Problem with white block on background (lower right corner)

  • Unknown's avatar

    Using Oslo theme.
    I have changed the background color of the site. But when i added code to move the body over to the left as the margin between the header area and the body area was too large, I now have an area of the background in the lower right of each page that is white, not the set background color.

    This is the change that introduced the white block in the lower right. How can i fix this?

    Original CSS:
    .entry {
    position: resolute;
    padding-top: 1px;
    padding-left: 0px;
    padding-right: 0;
    background: #858D94;
    border-bottom: 1px solid #858D94;
    }

    New CSS:
    .entry {
    position: absolute;
    padding-top: 1px;
    padding-left: 175px;
    padding-right: 0;
    background: #858D94;
    border-bottom: 1px solid #858D94;
    }

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Remove the position:absolute; to fix it. Then just adjust the padding-left and padding-right until it’s situated on the page how you like.
    If you want it centered, use margin-left:0px; and margin-right:0px; instead of padding-left and padding-right.

  • The topic ‘Problem with white block on background (lower right corner)’ is closed to new replies.