Hi All 3 months back we found this framework and immediately fell in love with this framework. Since then we have revamped BootStrapToday ( http://bootstraptoday.com) UI using this framework. We love the new UI design based on Bootstrap. I would appreciate if you guys can give your valuable feedback on the new design. You can watch the video of new design at http://blog.bootstraptoday.com/2012/04/22/bootstraptoday-v3-0-alpha-released/ .
Also you can try out the new design by signing up @http://bootstraptoday.com Looking forward to hearing from you guys. Regards Anand On Fri, May 25, 2012 at 12:36 AM, <[email protected]>wrote: > Today's Topic Summary > > Group: http://groups.google.com/group/twitter-bootstrap/topics > > - Bootstrap in IE <#137803dd32f1efc4_group_thread_0> [4 Updates] > - Not so much space between each > columns<#137803dd32f1efc4_group_thread_1>[1 Update] > - Responsive Images <#137803dd32f1efc4_group_thread_2> [1 Update] > - Wall of Fame : Plz Share your UI links built on top of Twitter > BootStrap. :) <#137803dd32f1efc4_group_thread_3> [1 Update] > - Suggestions for typeahead <#137803dd32f1efc4_group_thread_4> [1 > Update] > - Centering contents in regular top > nav<#137803dd32f1efc4_group_thread_5>[1 Update] > - gap between buttons <#137803dd32f1efc4_group_thread_6> [1 Update] > - Documentation for authoring new Bootstrap plugins (What's the > meaning of "data-api"?) <#137803dd32f1efc4_group_thread_7> [2 Updates] > > Bootstrap in > IE<http://groups.google.com/group/twitter-bootstrap/t/df82dd252aa67275> > > Dejan <[email protected]> May 24 09:01AM -0700 > > Hi, > > I'm trying to get Boostrap to work in IE but I just can't manage to do > that. > Here is the output: http://i47.tinypic.com/4hv020.png > > The thing is, if I go to http://twitter.github.com/bootstrap/ then the > forms also work on IE. I've looked through their source code but > didn't > find anything specific to add to mine, to make it work. > > Help please > > > > > Phil Doughty <[email protected]> May 24 08:30PM +0400 > > You might wanna consider the html5 > boilerplate<http://html5boilerplate.com/>option ie: > > <!doctype html public "✰"> <!--[if lt IE 7]> <html lang="en-us" > class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html > lang="en-us" class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> > <html > lang="en-us" class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> > <html > lang="en-us" class="no-js"> <!--<![endif]--> <head> > > Phil Doughty > > > > > > > > > > > > "Barry vd. Heuvel" <[email protected]> May 24 06:52PM +0200 > > Only that code shouldn't make a difference, it is only to define > specific > css for different IE versions. > > What version of IE are you using? Only IE9 or newer support > border-radius. > If you use IE9, but have no rounded corners, check that you are not in > compatibility mode. > > Press F12, to open de developer tools and check the document mode and > set > it to IE9. > If that is the problem, add this code (in your head) to force the > rendering > with the latest IE engine available (Or Chrome frame): > <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> > > > > > > Dejan <[email protected]> May 24 10:04AM -0700 > > Hello, > I've found out that the framework I am using is giving me this > problem, so > I have to check into that. It's not Bootstraps fault. > > Thank you for your help :) > > > > Not so much space between each > columns<http://groups.google.com/group/twitter-bootstrap/t/8ff855dd135728fa> > > Dan Vega <[email protected]> May 24 08:43AM -0700 > > First off the default fixed-width layout is 940px > > 12x60 = 720 > 11x20 = 220 > ------------------- > 940px > > If you want the gutter to only be 5px then you to adjust one of the > following > > 1.) total width > 2.) number of columns > > You can customize this to your liking using the customize download > http://twitter.github.com/bootstrap/download.html > > > > Responsive > Images<http://groups.google.com/group/twitter-bootstrap/t/e8210fe509ead79f> > > Dan Vega <[email protected]> May 24 08:27AM -0700 > > I have given a few presentations on Bootstrap now and I have been > asked > about adaptive images. With the 2.0 changes and Responsive Design how > are > images handled? There are projects out there like this that seem to do > a > good job with it http://adaptive-images.com/ but I am not sure if/how > bootstrap handles this. Thanks for taking a look at this. > > > > Wall of Fame : Plz Share your UI links built on top of Twitter > BootStrap. > :)<http://groups.google.com/group/twitter-bootstrap/t/7ef8357ae631ac32> > > Anand Agarwal <[email protected]> May 23 11:57PM -0700 > > Hi Rakesh > > Sure BootStrap is great framework. You can checkout > http://bootstraptoday.com new UI. We have extensively used twitter > Bootstrap framework with knockoutjs. > > Best Regards > http://bootstraptoday.com > > > > On Sunday, September 25, 2011 11:33:38 AM UTC+5:30, Rakesh Waghela > wrote: > > and put into live action. > > > Screenshots and Links of pages,apps using Twitter Bootstrap are > welcomed > > here :) Fingers Crossed ! > > On Sunday, September 25, 2011 11:33:38 AM UTC+5:30, Rakesh Waghela > wrote: > > > > Suggestions for > typeahead<http://groups.google.com/group/twitter-bootstrap/t/fd5500ca3d693752> > > Andrew <[email protected]> May 23 09:43PM -0700 > > Hi there, > > I've just put the typehead plugin to use in an app but had to modify > it slightly to allow the dropdown to appear when no search query has > been entered. So, I added the options "minQueryLength" and > "disableQuery" to allow this to happen: > > if (this.query.length < this.minQueryLength) > { > return this.shown ? this.hide() : this > } > > if (this.query.length > 0 || !this.disableQuery) > { > items = $.grep(this.source, function (item) > { > return that.matcher(item) > }) > } > else > { > items = this.source.slice(0); > } > > This may not be the best way to handle this, but here it is anyway, > fwiw. > > Cheers, Andrew. > > > > Centering contents in regular top > nav<http://groups.google.com/group/twitter-bootstrap/t/b032ce2f6906cdae> > > Henry Finkelstein <[email protected]> May 23 05:42PM -0700 > > Finally figured this one out - best way is to wrap the nav in a > container, > force a width close to your nav list width, and then text-align: > center on > the container. > > Something like: > .container { > width: 850px; > text-align: center; > } > > and > <div class="navbar"> > <div class="navbar-inner"> > <div class="container"> > <ul class="nav"> > ... > </ul> > </div> > </div> > </div> > > > Let me know if you need any help. > > On Monday, March 5, 2012 12:57:51 PM UTC-8, Henry Finkelstein wrote: > > > > gap between > buttons<http://groups.google.com/group/twitter-bootstrap/t/f2f7e1309a9fb89e> > > Kevin Blakeley <[email protected]> May 23 03:23PM -0700 > > sometimes the gaps can be caused by the spacing in your markup. In the > online demos the buttons are placed on separate lines in the source > code > but when you put them on the same line then no gap appears between the > buttons. Check out this example where I was able to reproduce your > problem > > http://jsfiddle.net/whoiskb/hDnFY/ > > If you adjust your mark up then you should see the space without the > need > for additional CSS > > On Saturday, May 19, 2012 10:27:36 AM UTC-6, Kinetic13 wrote: > > > > Documentation for authoring new Bootstrap plugins (What's the meaning > of > "data-api"?)<http://groups.google.com/group/twitter-bootstrap/t/9003887f24f90f6d> > > Kevin Blakeley <[email protected]> May 23 01:34PM -0700 > > I was a bit confused as well, but this is what I have been able to > gather > so far. > > Based on a comment from the read me at > https://github.com/twitter/bootstrap/tree/master/js , the data api is > used > so that you can wire up to the plug in without having to write any > javascript code. The code you reference for the typeahead is creating > an > event handler for the focus event of the body and the event will only > fire > when the target matches the selector that was specified. The selector > in > this case are the DOM elements that have the typeahead data attribute > set. > For each of those elements the typeahead jquery component is being > initialized. This allows us to specify this markup to use the > typeahead > component: <input type="text" data-provide="typeahead"> > > The meaning of focus.typeahead.data-api is a way for you to provide a > name > space for your event registration. There is a good explanation of the > usage in the jQuery docs, http://api.jquery.com/on/ > > I hope this helps and hope someone will chime in and correct me if I > am > wrong > > On Wednesday, May 23, 2012 12:00:01 PM UTC-6, Richard Bronosky wrote: > > > > > Richard Bronosky <[email protected]> May 23 02:37PM -0700 > > Kevin, thanks for this. I did find that jquery doc last night, but my > head > 'sploded before I grokked the namespace part. I did miss that README > because I downloaded the zip instead of cloning the repo. Doh! Your > explanation combined with the docs you linked to put me in a good > place for > being able to figure this out tonight. I'm looking forward to me > personal > coding hours tonight! Thank you! I'll give and update later. > > On Wednesday, May 23, 2012 4:34:13 PM UTC-4, Kevin Blakeley wrote: > > > > You received this message because you are subscribed to the Google Group > twitter-bootstrap. > You can post via email <[email protected]>. > To unsubscribe from this group, > send<[email protected]>an empty message. > For more options, > visit<http://groups.google.com/group/twitter-bootstrap/topics>this group. >
