Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS background image not sticky at the bottom

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #32276
    lobino
    Member

    Can anyone help to fix? I do not know how to make the background image (css position bottom right) sticky at the bottom of the page. If I resize the page it stays at bottom, but if the window is shorter than right column and you need to scroll, the image leave some space at the bottom.. try to visit the link, eventualy resize the window and the scroll down.

    http://www.3820.it/test/philosophy.html.

    Thank you

    #51768
    lyleyboy
    Member

    position: absolute;
    bottom: 0;
    right: 0;

    #51693
    lobino
    Member

    OK, that’s the best solution. Thank you!

    #51694
    davidlab.be
    Participant

    you might also want to add a min-height and min-width to your #outline div to prevent the site from breaking down with minimized or displayed on a smaller screen.
    Add to your #outline div…
    #outline{
    min-height: 800px:
    min-width: 1000px;
    }
    just set the size to you think the layout looks good for you when minimized.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.