Though the post is derailing towards Bootstrap, it's my post and I don't mind it at all since I've taken an interest into bootstrap as well as of late 😛 . (being a PhD student for 3 years now, I've lost touch with the fun coding stuff, and I am trying to catch up :)
When you say convert to boostrap - is it anything more other than installing boostrap and adjusting class values, and inserting bootstrap components? ( I feel like I am missing a BIG part of the pic when it comes to BS :)
haha sorry ... didn't mean to sidetrack your thread.
Bootstrap is responsive design layout, meaning the content will restructure depending on your resolution. By convert, I am meaning re-designing pages to implement the components and usage of bootstrap.
Essentially, I'm going through each page in all my projects and getting rid of things like this ...
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
in favor of goodness like this
div class="row">
<div class="col-lg-6">
<div class="input-group">
<span class="input-group-addon">
<input type="checkbox">
</span>
<input type="text" class="form-control">
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
<div class="col-lg-6">
<div class="input-group">
<span class="input-group-addon">
<input type="radio">
</span>
<input type="text" class="form-control">
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
http://getbootstrap.com/components/ for a better explanation.
Basically going from a TABLE layout to a GRID layout which gives us a lot of flexibility. If I had a better handle on YAF and a blueprint to follow, I'd be throwing my hands in the YAF project too.
Edit, Yes, by converting I am mean it as in using the bootstrap classes and inserting bootstrap components. It's essentially a web developers wet dream of tools to use lol. I have several work projects a few side projects that I'm utilizing bootstrap with. So far all clients have been impressed.
Edited by user
8 years ago
|
Reason: Not specified