I am facing an issue with Bootstrap version 2 where I am unable to fix the grid layout. Even after wrapping all my HTML elements in a container, the layout still behaves unpredictably on different screen sizes. Here is a snippet of my code:
<header>
<div class="container">
<div class="row">
<div class="span5">
<img src="http://www.placehold.it/90x90" >
<h1 >
Header
</h1>
</div>
<div class="span4 offset3 text-right">
<h3>City</h3>
<p>+7 (343) 999999999</p>
</div>
</div>
</div>
</header>
<section class="container" id="anchors">
<div class="row">
<div class="span3 text-center">
<img src="http://www.placehold.it/150x150">
<a class="anchor">Anchor</a>
</div>
<div class="span3 text-center">
<img src="http://www.placehold.it/150x150">
<a class="anchor">Anchor</a>
</div>
<div class="span3 text-center">
<img src="http://www.placehold.it/150x150">
<a class="anchor">Anchor</a>
</div>
<div class="span3 text-center">
<img src="http://www.placehold.it/150x150">
<a class="anchor">Anchor</a>
</div>
</div>
</section>
Despite these efforts, the grid system remains unstable. How can I make it non-responsive? Any assistance would be greatly appreciated.