How To Place A Div In The Top Right Corner Using Twitter Bootstrap
I'm trying to get a div that contains something like: You're logged as 'username' (logout?)  But when I try to put it in it gets placed beneath
Solution 1:
You need to make span6 a class on a div which is contained in a a "row"
<divclass="row"><divclass="span9">
    Level 1 column
    <divclass="row"><divclass="span6">Level 2</div><divclass="span3">Level 2</div></div></div></div>
Post a Comment for "How To Place A Div In The Top Right Corner Using Twitter Bootstrap"