My previous experience has involved working with the YAML CSS framework, where elements degrade in stages. I am now trying to translate this into a WordPress theme based on Bootstrap 2.3x. However, I am struggling with achieving responsiveness, as it seems to only work in one step. Any help or guidance would be greatly appreciated.
I have created a jsfiddle for reference.
Update: I have updated to version 3.x of Bootstrap. Hoping that this will make finding a solution feasible...
The code snippet is provided below:
<div class="row-fluid" style="padding:1em;margin-top:3em;">
<div class="span12">
<div class="row-fluid">
<div class="span8">
<div class="row-fluid">
<div class="span4"> <a class='' href='#'>
<img class='media-object medium' src='http://dummyimage.com/160x250/ccc/222.png' id=''>
</a>
</div>
<div class="span8">
<table class="table table-hover">
<tr>
<td><span class="pull-right">author</span>
</td>
<td><span class="pull-left text-bright"><a>Some Author</a></span>
</td>
</tr>
<tr>
<td><span class="pull-right">Title</span>
</td>
<td><span class="pull-left text-bright">The Earth within</span>
</td>
</tr>
[Additional code snippets...]
</table>
</div>
</div>
</div>
<div class="span4">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.</div>
</div>
</div>
</div>