Resize Problems

  • After making a few tweaks to the CSS, my page is pretty much exactly how I want it – except for the whole resizing thing.

    I have my sidebar set to float:left and main part of the page floating to the right, but when I when the window’s at less than full screen, the sidebar gets completely hidden – you can’t scroll over to it, it just gets stuck off page until the window’s big enough.

    I was wondering if there was any way I’d be able to set it up so it sticks in place and doesn’t go off-screen with smaller windows?

    (My URL is macinphormer.com)
    Here’s the code:

    #sidebar {
    position:absolute;
    width:230px;
    padding:10px;
    background:#FFFFFF;
    clip:auto;
    float:left;
    margin-left:-316px;
    margin-top:-241px;
    }

    #main {
    width:600px;
    float:right;
    margin-right:100px;
    padding:0;
    }

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

  • Looks like thesacredpath already helped you out with this question here:
    https://en.forums.wordpress.com/topic/help-with-positioning?replies=8#post-878324

    Please post back if that was a different issue and you still need help.

  • The topic ‘Resize Problems’ is closed to new replies.