Questions tagged [twitter-bootstrap-rails]

twitter-bootstrap-rails is a toolkit from Twitter designed to kickstart development of webapps and sites.

Bootstrap is a toolkit from Twitter designed to kickstart development of webapps and sites. It includes base CSS and HTML for typography, forms, buttons, tables, grids, navigation, and more.

See https://github.com/seyhunak/twitter-bootstrap-rails

201 questions
0
votes
1 answer

twitter bootstrap 2 modal boxes on same page

I have two modal boxes on same page whose content will also be loaded by partial once the main page loads. Ids are different for those modals. but wen I open one modal and open second one, Am getting 1st modal's content in second one. Do we need any…
Kranthi
  • 1,377
  • 1
  • 17
  • 34
0
votes
1 answer

Still cannot override bootstrap variables in twitter-bootstrap-rails gem

I apologize in advance if I seem to be 'flogging a dead problem'. It seems like this problem has been answered a million and one times but for some reason I still cannot seem to change the color of the bootstrap navbar. Please help!! My…
0
votes
1 answer

Bootstrap grid not working properly rails

I'm trying to create my portfolio site using rails and bootstrap-sass gem and I cant seem to get the column layouts working. Here is a fiddle: http://jsfiddle.net/thyat/ My style sheet is empty and my haml code is !!! %html %head %title #{…
MikaAK
  • 2,334
  • 6
  • 26
  • 53
0
votes
2 answers

How do I get my Bootstrap webpage to have a full width

I am using gem 'bootstrap-sass', '~> 2.3.2.2' in my Rails application. How do I get my navigation and boy content to stretch, so it is 100% of the width? My application.haml looks like this: !!! %html %head = favicon_link_tag "/favicon.ico" …
Cjoerg
  • 1,271
  • 3
  • 21
  • 63
0
votes
1 answer

Bootstrap jQuery button & click to toggle text/entry fields

Links in pastebin here: http://pb.gizmokid2005.com/o8s (numbers in each ref refer to lines in the paste). I found a very similar answer to what I'm trying to do on stackoverflow[1]. In short I want to have a button that I can use, in which the text…
0
votes
1 answer

Add Image to Brand - Rails - Twitter_Bootstrap_Rails Gem

I am using the twitter-bootstrap gem (https://github.com/seyhunak/twitter-bootstrap-rails) in my rails app. I am trying to create a simple nav bar with some search functionality. I would like to be able to replace the 'Brand' text with an image,…
DJElbow
  • 3,345
  • 11
  • 41
  • 52
0
votes
2 answers

Twitter Bootstrap + Rails, how do you integrate and modify it?

How do you customize something like Twitter Bootstrap in a Rails 3.2 app? I have the gem ('bootstrap-sass 3.0.3.0') already. Do I just get a copy of the Sass files and not use the gem at all? I feel like I am missing something here because I have…
0
votes
2 answers

Unable to load twitter-bootstrap-rails from a rails mountable engine

I have converted am existing rails 3.2 application to a mountable engine, but the asset pipeline is broken with the following error: 'twitter/bootstrap/bootstrap.less' wasn't found (in…
MIdhun Krishna
  • 1,739
  • 1
  • 13
  • 31
0
votes
1 answer

Why are my breadcrumbs styled differently locally than on heroku when using breadcrumbs_on_rails gem?

I added the breadcrumbs_on_rails gem to my Rails app and set it up and it works great. Then I pushed my changes to heroku and while the breadcrumbs still function the same way, they are styled differently. I prefer the styling that I am getting…
0
votes
2 answers

Why is this twitter-bootstrap drop down not working in ruby on rails?

This seems so simple, yet I can't figure it out. For some reason, clicking on the dropdown menu is not working, yet everything else in twitter bootstrap is. I'm using ruby on rails. I've already looked at stackoverflow questions that say to…
0
votes
1 answer

Rails 4, Heroku, Bootstrap - Overrides not working in Production

I've converted my Rails app to Rails 4. I'm using the Twitter Bootstrap Rails gem 2.2.6. My application is working fine locally and in production. When I deploy everything looks fine. I'm not seeing any errors in my Heroku logs when browsing the…
0
votes
1 answer

How do I switch from using the twitter-Bootstrap-rails gem to using normal Bootstrap

I have a rails app that was built with the Bootstrap rails gem for development, but now I am going to start doing design and styling stuff and I would rather just move to referencing bootstrap normally/locally. The app is based on the…
user2360274
0
votes
1 answer

How do I download bootstrap static files into my rails project?

I know I put the files into my vendor folder but where in that folder and what are the steps???
0
votes
1 answer

How should I Install wrapboostrap template on a rails Project?

I recently bought a twitter bootstrap template at www.wrapboostrap.com , then I just added the css files to assets/stylesheets and do the same with javascripts, also changed de route inside of every css files to assets/images for some css stuff, but…
0
votes
1 answer

Getting input from view to scope an index

So I am trying to add the ability to select a user in the view, and then return only the Lists that are associated with that user. I can do this for now hard coded in the controller. def show @some_lists = List.sort(:boolean => true, :user_id…
user2360274