skip to Main Content

I need to create a website by using Twitter Bootstrap that will be structured like you see in the image. But considering how Bootstrap is build (based on rows and columns), I am not sure what classes to use, so I will be able to have a background around the menu and content area.

Can someone help? Thanks!

enter image description here

2

Answers


  1. I think you can add a background to your body. Then, make a .container and paste your menu and content inside.
    Add a padding to your .container.

    I did not try, but I think it can work.

    Login or Signup to reply.
  2. Live example to the @DadaArno answer

    UPDATE

    <div class="content">
        <div class="row">
            <div class="col-md-6"></div>
            <div class="col-md-6"></div>
        </div>
    </div>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search