Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4171772
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T00:29:03+00:00 2026-05-21T00:29:03+00:00

I have used position: fixed; so the box stay at the same place when

  • 0

I have used position: fixed; so the box stay at the same place when scrolling up or down.

Problem is Categories (div) is not showing all the content when it large. Content missing at the bottom of the Categories

See example: http://jsfiddle.net/Dyx22/

<div style="background-color:pink; height:150px; margin-bottom:10px">header </div>

<div id="side_manu" style="float:left; width:190px;  position: fixed; margin-bottom:300px;">
    <div style="border:1px solid black"> 
       Categories 
                 <div style="padding:10px"> Cat 1 </div>
                 <div style="padding:10px"> Cat 2 </div>
                 <div style="padding:10px"> Cat 3 </div>
                 <div style="padding:10px"> Cat 4 </div>
                 <div style="padding:10px"> Cat 5 </div>
                 <div style="padding:10px"> Cat 6 </div>
                 <div style="padding:10px"> Cat 7 </div>
                 <div style="padding:10px"> Cat 8 </div>
                 <div style="padding:10px"> Cat 9 </div>
                 <div style="padding:10px"> Cat 10 </div>
                 <div style="padding:10px"> Cat 11 </div>
                 <div style="padding:10px"> Cat 12 </div>
                 <div style="padding:10px"> Cat 13 </div>
                 <div style="padding:10px"> Cat 14 </div>
                 <div style="padding:10px"> Cat 15 </div>
                 <div style="padding:10px"> Cat 16 </div>
                 <div style="padding:10px"> Cat 17 </div>
                 <div style="padding:10px"> Cat 18 </div>
    </div>
</div>

<div id="itemlist" style="float:left; width:600px; margin-left:200px; margin-right:10px; ">
       <div style="width:600px; background-color:yellow; padding: 10px;"> 
          <div style="margin-bottom:10px; border:1px solid black; padding:20px;"> Item 1 <br /> Item 1 <br /> Item 1</div>
          <div style="margin-bottom:10px; border:1px solid black; padding:20px;"> Item 2 <br /> Item 2 <br /> Item 2</div>
          <div style="margin-bottom:10px; border:1px solid black; padding:20px;"> Item 3 <br /> Item 3 <br /> Item 3</div>
          <div style="margin-bottom:10px; border:1px solid black; padding:20px;"> Item 4 <br /> Item 4 <br /> Item 4</div>
          <div style="margin-bottom:10px; border:1px solid black; padding:20px;"> Item 5 <br /> Item 5 <br /> Item 5</div>
          <div style="margin-bottom:10px; border:1px solid black; padding:20px;"> Item 6 <br /> Item 6 <br /> Item 6</div>
          <div style="margin-bottom:10px; border:1px solid black; padding:20px;"> Item 7 <br /> Item 7 <br /> Item 7</div>
          <div style="margin-bottom:10px; border:1px solid black; padding:20px;"> Item 8 <br /> Item 8 <br /> Item 8</div>
          <div style="margin-bottom:10px; border:1px solid black; padding:20px;"> Item 9 <br /> Item 9 <br /> Item 9</div>
       </div>
</div>

<div id='display_cart' style="width:190px; float:left; font-size:12px; background-color:green "> Cart Info.</div>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T00:29:04+00:00Added an answer on May 21, 2026 at 12:29 am

    The content is there, but because the div is fixed, you can never scroll down to see anything that is at the bottom of the box.

    If possible, I would read a little more about page layouts and css – for example you are using a lot of DIV’s here where it would be best to use lists and there is a lot of inline css that could be replaced with a couple of lines of css.

    —-Edit—-

    Assuming you want to keep this design, one way you could get around it (although maybe not the most user-friendly or aesthetically pleasing) is to set a height for the side-menu and setting overflow to auto.

    So you would replace the “side_manu” div would be as follows:

    <div id="side_manu" style="float:left; width:190px;  position: fixed; margin-bottom:300px; height: 75%; overflow: auto; border:1px solid black"> 
       Categories 
                 <div style="padding:10px"> Cat 1 </div>
                 <div style="padding:10px"> Cat 2 </div>
                 <div style="padding:10px"> Cat 3 </div>
                 <div style="padding:10px"> Cat 4 </div>
                 <div style="padding:10px"> Cat 5 </div>
                 <div style="padding:10px"> Cat 6 </div>
                 <div style="padding:10px"> Cat 7 </div>
                 <div style="padding:10px"> Cat 8 </div>
                 <div style="padding:10px"> Cat 9 </div>
                 <div style="padding:10px"> Cat 10 </div>
                 <div style="padding:10px"> Cat 11 </div>
                 <div style="padding:10px"> Cat 12 </div>
                 <div style="padding:10px"> Cat 13 </div>
                 <div style="padding:10px"> Cat 14 </div>
                 <div style="padding:10px"> Cat 15 </div>
                 <div style="padding:10px"> Cat 16 </div>
                 <div style="padding:10px"> Cat 17 </div>
                 <div style="padding:10px"> Cat 18 </div>
    

    • Please note the added height and overflow parameters, and that I have removed your extra border div and added the border property to the “side_manu” div.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Problem Problem shaping Image sequence position and size are fixed and known beforehand (it's
I have used traditional version control systems to maintain source code repositories on past
I have used IPC in Win32 code a while ago - critical sections, events,
I have used the XML Parser before, and even though it worked OK, I
I have used Photoshop CS2's Save for Web feature to create a table of
I have used this in my HTML: <q> Hai How r u </q> Which
I have used an update command to update the whole table in an Sql
I have used getopt in Python and was hoping there would be something similar
I have used extension methods to extend html helpers to make an RSS repeater:
T have used checkbox column in gridview. On click of a linkbutton, it should

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.