When doing my news page, I had the choice of either letting my elements flow and wrap as the page re-sized by using rows or making them stay put simply scale using row-fluid. I would have opted for the standard row, but there's still a little bit of glitchyness caused by the overrides to the Bootstrap codebase made by senior developers. So I ended up going with the fluid rows to keep things from hopping around excessively.
Speaking of trouble with jumping elements, I had an issue in my homepage. The homepage normally features several large icons-links with accompanying text. Originally these icons were centered above the text, but I felt that this took up too much room, and so pushed the images inline with the text, and pushed them over a static number of pixels.
This caused chaos when the divs were re-sized, images and text boxes went flying ever which way. To rectify this, I had to make sure that the divs stayed a static width. This effectively meant I couldn't use Bootstrap's built in responsiveness (but that didn't prevent me from trying for several hours). Anyway, after a hard-fought but pointless battle, I realized I had a simmiliar issue weeks before. The news page features a widget called "Lounge Members" which is made up of a div containing imagelinks that don't scale, and arrange themselves to fit within a scaling div. Bingo. After looking through the source, it turned out that the widget was an unordered-list (<ul>), with each imagelink being a list item (<li>). To fix my homepage, I did the following:
<div class="dynamicallyResizingDiv">
<ul>
<li>
<imageicon goes here>
</li>
<li>Of course I messed around with the margins on the li elements to make things look pretty. And now that's sorted.
<imageicon goes here>
</li>
....
</ul>
</div>
links:
news page: http://kukuicup-rui.googlecode.com/svn/trunk/Bloggable/news.html
home page: http://kukuicup-rui.googlecode.com/svn/trunk/Bloggable/home.html
No comments:
Post a Comment