reduce pixels between sidebars and footer

  • Anonymous

    #7749

    Hi! I have a question but I prefer show two pics:

    I have this:

    BEFORE

    and I want this:

    AFTER

    is it possible?

    REGARDS!

    Mod

    Kenneth John Odle

    #39214

    Yes, it is possible, but without a direct link to your site, it’s difficult to pin down precisely.

    With the Firebug extension for Firefox and a little CSS knowledge, you can figure this out. If not, please post a link.

    Anonymous

    #39215
    Mod

    Kenneth John Odle

    #39216

    Add this to custom CSS:

    #content {
    height: 400px;
    overflow: hidden;
    }

    There may be a better way to do this; check back to see if somebody else has another idea.

    Anonymous

    #39217

    It worked perfectly well, Kenneth. I do appreciate your help. Thank you very much!

    Anonymous

    #39218
    Mod

    Kenneth John Odle

    #39219

    Change

    overflow: hidden;

    to

    overflow: auto;

    This will allow users to see your content, but it will introduce two new problems:

    1) There will be a scroll bar on the right hand side if needed.

    2) When users scroll, the boxes on the left will move away from the boxes on the right.

    This is because the two sets of boxes are in different <div>‘s. I can’t think of a way to avoid this at the moment.

Viewing 7 posts - 1 through 7 (of 7 total)

  • You must be logged in to reply to this topic.