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 8055385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T08:22:12+00:00 2026-06-05T08:22:12+00:00

I am using the 1140px fluid grid (cssgrid.net) layout. I am having some problem..

  • 0

I am using the 1140px fluid grid (cssgrid.net) layout.

I am having some problem..

My layout looks like this:

Side Menu - Content
          - Content
          - Content
          - Content
          - etc. etc.

My problem is, that my layout does like this:

Side Menu - Content
Content
Content
Content
Content
etc. etc.

I want, so my “Side Menu” is full height, so it will push the content to “the right”.

My layout (Exist of 12 cols):

<div class="container">

  <div class="row">
    <div class="twocol">
    -- Side Menu Content Here --
    </div><!-- END 2col --> 

    <div class="tencol last">
    content content content
    </div> 
    <div class="tencol last">
    content content content
    </div> 
    <div class="tencol last">
    content content content
    </div> 
    <div class="tencol last">
    content content content
    </div> 
  </div><!-- END .row -->  
</div><!-- END .container -->

The CSS is:

.container {
padding-left: 20px;
padding-right: 20px;
}

.row {
width: 100%;
/*max-width: 1140px; */
min-width: 755px;
margin: 0 auto;
overflow: hidden;
}

.onecol, .twocol, .threecol, .fourcol, .fivecol, .sixcol, .sevencol, .eightcol, .ninecol, .tencol, .elevencol {
margin-right: 3.8%;
float: left;
min-height: 1px;
}

.row .onecol {
width: 4.85%;
}

.row .twocol {
width: 13.45%;
}

.row .threecol {
width: 22.05%;
}

.row .fourcol {
width: 30.75%;
}

.row .fivecol {
width: 39.45%;
}

.row .sixcol {
width: 48%;
}

.row .sevencol {
width: 56.75%;
}

.row .eightcol {
width: 65.4%;
}

.row .ninecol {
width: 74.05%;
}

.row .tencol {
width: 82.7%;
}

.row .elevencol {
width: 91.35%;
}

.row .twelvecol {
width: 100%;
float: left;
}

.last {
margin-right: 0px;
}

I hope you can help me. Thank you.

  • 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-06-05T08:22:14+00:00Added an answer on June 5, 2026 at 8:22 am

    Your layout looks this way:

    body
    +------------------------------------------------------------+
    | two col content   ten col content                          |
    | +--------------+ +---------------------------------------+ |
    | |              | |                                       | |
    | |              | |                                       | |
    | +--------------+ +---------------------------------------+ |
    | +---------------------------------------+                  |
    | |   ten col content                     |                  |
    | |                                       |                  |
    | +---------------------------------------+                  |
    | +---------------------------------------+                  |
    | |   ten col content                     |                  |
    | |                                       |                  |
    | +---------------------------------------+                  |
    | +---------------------------------------+                  |
    | |   ten col content                     |                  |
    | |                                       |                  |
    | +---------------------------------------+                  |
    | +---------------------------------------+                  |
    | |   ten col content                     |                  |
    | |                                       |                  |
    | +---------------------------------------+                  |
    | +---------------------------------------+                  |
    | |   ten col content                     |                  |
    | |                                       |                  |
    | +---------------------------------------+                  |
    +------------------------------------------------------------+
    

    Do not repeat that ten col content. Keep it as a wrapper and use smaller divs. Like this:

    body
    +------------------------------------------------------------+
    | two col content   ten col content                          |
    | +--------------+ +---------------------------------------+ |
    | |              | | +-----------------------------------+ | |
    | |              | | |                                   | | |
    | +--------------+ | |                                   | | |
    |                  | +-----------------------------------+ | |
    |                  | +-----------------------------------+ | |
    |                  | |                                   | | |
    |                  | |                                   | | |
    |                  | +-----------------------------------+ | |
    |                  | +-----------------------------------+ | |
    |                  | |                                   | | |
    |                  | |                                   | | |
    |                  | +-----------------------------------+ | |
    |                  | +-----------------------------------+ | |
    |                  | |                                   | | |
    |                  | |                                   | | |
    |                  | +-----------------------------------+ | |
    |                  | +-----------------------------------+ | |
    |                  | |                                   | | |
    |                  | |                                   | | |
    |                  | +-----------------------------------+ | |
    |                  +---------------------------------------+ |
    +------------------------------------------------------------+
    

    In case if you want the HTML Code,

    <div class="container">
    
        <div class="row">
            <div class="twocol">
            -- Side Menu Content Here --
            </div><!-- END 2col --> 
    
            <div class="tencol last">
                <div>
                    content content content
                </div>
                <div>
                    content content content
                </div>
                <div>
                    content content content
                </div>
                <div>
                    content content content
                </div>
            </div> 
        </div><!-- END .row -->  
    </div><!-- END .container -->
    

    Hope it helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using Flex 3, I would like to take an image snapshot such as this:
I've recently been using this set up on a website... http://jsfiddle.net/mnRNE/ CSS body {
I'm using this to link to some Google Fonts: <link href='http://fonts.googleapis.com/css?family=IM+Fell+English+SC|Snippet|Sarina|Crushed|Caesar+Dressing|Montez|Bad+Script|Sofia|Fontdiner+Swanky|Just+Me+Again+Down+Here|Voltaire|Geo|Coming+Soon|Wellfleet|Passion+One|Rock+Salt|Homemade+Apple|Meddon|Rosario' rel='stylesheet' type='text/css'> I'm
look at this image folks, instead of using overflow:hidden there is still some text
I'm having trouble establishing an on state for a tab of this menu. I
I'm using a grid system that uses percents (the 1140px grid to be precise)
I'm having trouble rounding the corners of an img using CSS3: This is the
I'm having some big problems with encoding in Firefox when using AJAX and jQuery.
So, I'm using the 1140px css grid . It's a responsive css grid design
using (var file_stream = File.Create(users.xml)) { var serializer = new XmlSerializer(typeof(PasswordManager)); serializer.Serialize(file_stream, this); file_stream.Close();

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.