Skip to content Skip to sidebar Skip to footer

Twitter Bootstrap, Styling & Using Media-grid Class

I am creating a simple(ish) website for one of my iPhone apps using the Twitter Bootstrap project. I have created a full website with this and found it quite easy to use but I am

Solution 1:

To get the default styling to work correctly you need to wrap the <li>s with an <a href>.

e.g.

<ul class="media-grid" id="imagearray">
<li>
<a href="#"><img class="thumbnail" src="img/tweettimemainimage.png" alt=""></a>
</li>
<li>
<a href="#"><img class="thumbnail" src="img/tweettimemainimage.png" alt=""></a>
</li>
<li>
<a href="#"><img class="thumbnail" src="img/tweettimemainimage.png" alt=""></a>
</li>
</ul>

Post a Comment for "Twitter Bootstrap, Styling & Using Media-grid Class"