Boostrap Css Help In Yii

How can I align the content to the center? Please see attached screenshot

<div class="row-fluid">

<div class="span2 ">

CONTENT

</div>

<div class="span6 ">

CONTENT

</div>

</div>

Assuming bootstrap 2…

Use offsetting columns.

http://getbootstrap.com/2.3.2/scaffolding.html

this should do the trick


<div class="row-fluid">

	<div class="span2 offset2">

		... CONTENT ...

	</div>

	<div class="span6 ">

		... CONTENT ...

	</div>

</div>

Awesome!!!

Thank you so much!!

Thanks for your reply too! I am using bootstrap 3.

Srsly, guys, why are you talking about HTML in "General Discussion for Yii 1.1.x"?

Genius do we have to ask you now where this post belongs