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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T12:29:38+00:00 2026-06-07T12:29:38+00:00

I’m using Twitter Boostrap and the grid system that comes with it. For my

  • 0

I’m using Twitter Boostrap and the grid system that comes with it.
For my #stories div, i want to move it to the right of the page so it’s vertically parallel to the “welcome” div.

I’ve followed the nesting rules in the Boostrap reference (scaffolding section) and laid out my code based on their guide, but cant get the content for the stories div to appear as a column on the right.

What I might be doing wrong?

Code below, but also a link at the bottom to the full page.

<div class="row">


        <!-- welcome container -->
        <div class="span8" id="welcome">
            <h1>Storify</h1>
            <div id="StoryActions">

            <div>

                <a href="#" class="btn btn-success .btn-large" id="BtnCreateStory">
                    <div id="NewStoryBtn">
                        <span id="create">CREATE</span><p id="newstory">New Story</p>
                    </div>
                </a>



                <a href="#" class="btn" id="BtnJoin">
                    <div id="JoinStoryBtn">
                        <span id="create">JOIN</span><p id="newstory">Existing Story</p>
                    </div>
                </a>

                <p id="registration">no registration required</p>



                <div id="StoryDescription">
                <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
                <p>Storify is a <strong>fun</strong>, group <strong>writing game</strong> 
                taking inspiration from the story writing game that you may have played at a party or at school with friends.</p>

                <p>Each person writes a random sentence to form part of a story.</p>

                <p>Once the story is complete, one person reads out the whole story, and usually everyone breaks into laughter.</p>
                <p>Storify is great for playing with your Internet friends or Co-workers.</p>
                </div>

            </div>

            </div>

    <div class="row">

        <div class="span6">

                <!-- Running Stories -->
                <div class="span3">&nbsp;</div>

                <div class="span3">
                    <div id="stories"> 
                    I want to write a really long story here and see how far it goes down the path
                    </div>
                </div>

        </div>


    </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-06-07T12:29:40+00:00Added an answer on June 7, 2026 at 12:29 pm

    The Bootstrap grid system utilizes 12 cloumns, which means that in every row you design, the sum of columns inside row at the topmost level should equal 12 or less. The sum of columns in the nested rows should equal to the sizes of the columns where the rows are nested.

    The simplified scheme of your example is like this:

    <div class="row">
      <!-- welcome container -->
      <div class="span8" id="welcome">
        ...
      <div class="row">
      <div class="span6">
        <!-- Running Stories -->
          <div class="span3">&nbsp;</div>
    
          <div class="span3">
            <div id="stories"> 
              I want to write a really long story here and see how far it goes down the path
            </div>
          </div>
      </div>
    </div>
    

    There are several mistakes.

    1. span8 div is not properly closed. Instead of it’s closing tag, there is a redundant row div.
    2. The sum of columns at the topmost level is 14 (span8 + span6) which is too much.
    3. The two nested columns span3 are not closed in another row.

    Here is the fixed version, where I have reduced right column to span4 so the sum would equal 12. Likewise I have reduced the sizes of the nested columns.

    <div class="container">
    
        <div class="row">
    
            <!-- welcome container -->
            <div class="span8" id="welcome">
                <h1>Storify</h1>
                <div id="StoryActions">
    
                <div>
    
                    <a href="#" class="btn btn-success .btn-large" id="BtnCreateStory">
                        <div id="NewStoryBtn">
                            <span id="create">CREATE</span><p id="newstory">New Story</p>
                        </div>
                    </a>
    
    
    
                    <a href="#" class="btn" id="BtnJoin">
                        <div id="JoinStoryBtn">
                            <span id="create">JOIN</span><p id="newstory">Existing Story</p>
                        </div>
                    </a>
    
                    <p id="registration">no registration required</p>
    
    
    
                    <div id="StoryDescription">
                    <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
                    <p>Storify is a <strong>fun</strong>, group <strong>writing game</strong> 
                    taking inspiration from the story writing game that you may have played at a party or at school with friends.</p>
    
                    <p>Each person writes a random sentence to form part of a story.</p>
    
                    <p>Once the story is complete, one person reads out the whole story, and usually everyone breaks into laughter.</p>
                    <p>Storify is great for playing with your Internet friends or Co-workers.</p>
                    </div>
    
                </div>
    
                </div>
    
            </div>
    
            <div class="span4">
    
               <div class="row">
                    <!-- Running Stories -->
                    <div class="span2">&nbsp;</div>
    
                    <div class="span2">
                        <div id="stories"> 
                        I want to write a really long story here and see how far it goes down the path
                        </div>
                    </div>
               </div>
            </div>
    
    </div>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm making a simple page using Google Maps API 3. My first. One marker
I'm working with an upstream system that sometimes sends me text destined for HTML/XML
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I am reading a book about Javascript and jQuery and using one of the
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function

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.