Bootstrap is a front-end framework from Twitter designed to kick-start development of webapps and sites. Among other things, it includes base CSS and HTML for typography, icons, forms, buttons, tables, layout grids, and navigation along with custom-built jQuery plug-ins and support for responsive ...
0
votes
0answers
4 views
How to set gridColumnWidth for Twitter Bootstrap in sass-rails
How can I change gridColumnWidth variable of Twitter Bootstrap in gem 'sass-rails'?
0
votes
0answers
13 views
Bootstrap dropdown select is only half visible
I am using the Rails form_for helper to create a form for setting new alerts. The example code looks like this:
<div class="row">
<div class="span6 offset3">
<%= ...
0
votes
2answers
44 views
Define height and width of the image in responsive web design
I'm using Twitter Bootstrap to create responsive web, i have to create an image gallery it has around 12 images. i have created a ul list and each li has .span3 class. Everything works well if images ...
0
votes
0answers
19 views
twitter bootstrap fonts not showing in production rails
In development mode, my custom css's font using twitter bootstrap works fine.
But in production mode, the font displayed is not the correct font in the css.
I had done rake assets:precompile:all in ...
0
votes
0answers
5 views
Simple Fluid layout with images - different fluid response in FF and Android
I would like to create a simple fluid web layout with Twitter Bootstrap. It should look like this on the computer:
and like this on mobile device (that breaking up images into two locations is ...
0
votes
0answers
6 views
Bootstrap not working in all my views - Ruby on Rails
I followed the Railscast (#328) to create a RoR project and added Bootstrap. After creating the project, I then created a Product scaffold, ran the rails g bootstrap:install and bootstrap was working ...
0
votes
1answer
18 views
Bootstrap load AJAX content in Inactive Tab
I'm building a site utilising Bootstrap tabs and AJAX. I've set it up so that when a link with the class of .load is clicked the content of that html document is loaded into the active tab, in this ...
0
votes
1answer
8 views
Twitter Bootstrap Modal button options to specify when triggering via javascript
In order to trigger opening of a Twitter Bootstrap modal, I have a button and I have a Jquery Java Script function on click event of the button.
Q1)
In JS function, if I specify
...
0
votes
1answer
13 views
How To Add New Custom Link Using PHP “if” and “else”, in OpenCart 1.5.5.1?
Hello Theme Developers,
Im editing a theme named AquaCart, installed in OpenCart 1.5.5.1.
I also integrated twitter bootstrap's fixed top navbar.
I already moded the navbar and had put the ...
0
votes
0answers
16 views
How do I stop a Bootstrap x-editable from updating an edited field when ajax call fails?
How do I stop a Bootstrap x-editable from updating an edited field when ajax call fails?
I am passing a function as the url.
$('.order-price').editable({
type: "text",
title: "Order Price",
...
1
vote
2answers
24 views
Using twitter bootstrap to create sidebar in master-detail UI
Using twitter bootstrap, I am trying to create a sidebar in a master-detail UI with the code below. The problem is that the sidebar is always appearing right above the main content or details section ...
1
vote
0answers
21 views
Filterable dropdown menu like Github uses
I really like the dropdown control Github uses, and have spent several hours looking for one similar, and even more trying to modify one.
I don't really have the time to build something as polished ...
-1
votes
1answer
50 views
Using Bootstrap, how do i achieve this horizontal tab layout? [closed]
I am trying to use the bootstrap nav-tabs to do the following
I'm almost there with the main html+css but i can't get the 'Overview' box to be bigger than the other boxes without throwing the ...
0
votes
1answer
18 views
How do I make Twitter Bootstrap Responsive with Rails?
I'm using the bootstrap-sass gem with my Ruby on Rails site. I would like to make my layout responsive, so I tried adding @import "twitter/bootstrap/responsive" to various files, but all I got was a ...
2
votes
2answers
13 views
Boostrap dropdown-menu header width and caret
For dropdown menu , if I fix the size of menu heading and use text-overflow: ellipsis; this also takes off caret symbol . You can see it here and below is the code
http://jsfiddle.net/bZw8X/1/
...
0
votes
1answer
36 views
Bootstrap - Make list Icons size match my Logo's Size
QUESTION - How can I make the List buttons on the right, match in size (or just fill the Nav Bar)
I have uploaded the site to here so you may see the code.
Website.
( I removed my previous ...
1
vote
1answer
35 views
Twitter bootstrap 2.3.2 popover stay open while hovering
I have a bottom-oriented popover that I'd like to be a bit more forgiving than the default popover, which vanishes as soon as the mouse leaves the trigger.
$('#example').popover({
html: true,
...
1
vote
2answers
22 views
Bootstrap adding a dropdown caret
http://i.imgur.com/gvNOQ7p.png
As indicated above, I want to learn to make a dropdown menu with the "dropdown-caret" (circled green in the image).
I viewed source of twitter and it seems that they ...
0
votes
0answers
19 views
Jquery Template Conditional operator
I use bootstrap, and I use a JQuery template for loading my data. The structure that I want the JQuery template to build for me is:
<div class="row-fluid">
<div class="span4">
...
0
votes
1answer
13 views
Select dropdown stays over bootstrap modal
I have an input that when changed, there are some validations made and eventually a notification is displayed using a modal.
The problem is that if on the same page there is a select and the input's ...
0
votes
1answer
27 views
Dynamically re size inner div (bootstrap modal)
I have the following HTML for the modal. When the seach-result-view is dynamically populated with content from the database(using ajax) it goes off page. I.e the content in seach-result-view goes off ...
0
votes
2answers
20 views
Boostrap - Accounting for different sized thumbnails in a single row
Most times when I'm using thumbnails the heights of the image are not uniform, as shown below:
<ul class="thumbnails">
...
<li class="span4">
<a href="#" class="thumbnail">
...
1
vote
3answers
57 views
Bootstrap: <a> removes left and right margin from span
I'm pretty new to Twitter Bootstrap and I have a problem that I would suspect is pretty easy to overcome, if you know where to look ;o)
I have wrapped 3 <span4> in <a>. This removes the ...
0
votes
0answers
24 views
Make list-icon of my collapsed navigation show on tablet/phone
I'm trying to make my website responsive with Twitter bootstrap, but I'm having some problems with my navigation. I'm using bootstrap's navigation menu but it won't change to a dropdown button on my ...
0
votes
1answer
27 views
bootstrap drop down top level navigation make a clickable link
I'm using the-boostrap wordpress theme to create a menu with drop-downs, however the top-level link only reveals the drop-down on clicking & does not go to a page itself when clicked. So in ...
0
votes
1answer
30 views
Dynamically added Twitter Bootstrap popover with <br> does not break lines
I have a large paginated table. Each row shows a client with it's information. I use an AJAX call to check if there are notes for a client.
If there is a note for a client an icon gets added. It is ...
0
votes
2answers
36 views
why does jQuery.load doesn't work for this page?
I have some inner html that needs to be inserted into a div which has the class modal-body like this:
$(".modal-body").load("http://cistrome.org/finder/util/pure_meta?did=1660");
Though this page ...
1
vote
1answer
26 views
Create equivalent of CMenu Zii widget with Yii booster
How do I implement menus using Yii-bootstrap or yii booster? For example the menu on the default layout of Yii is as follows-
<?php $this->widget('zii.widgets.CMenu',array(
...
2
votes
1answer
62 views
bootstrap-modal doesn't show the dialog
I'm using bootstrap in rails application. I tried to show dialog box using bootstrap-modal, but the dialog box doesn't come for me. Here is my view code.
<div id="creative_attachment_popup" ...
0
votes
1answer
28 views
How do you implement a javascript in rails views using bootstrap?
Without bootstrap it is fine, i can define in a particular rails view with a
<script>
$function(){
});
</script>
But how do i define it in rails view with bootstrap? I've done the ...
0
votes
3answers
35 views
height in a fluid layout
I'm trying to design a fluid / responsive web design using bootstrap. I'm trying to design the layout so that it'll fit in many devices. My question about setting height to a layout element, such as ...
1
vote
1answer
24 views
Unable to use bootstrap.min.js and bootstrap-dropdown.js at the same time
I'm using modal and dropbox js of twitter bootstrap in my project and having problem using the two.
I have added the following script tags in my html -
<script type="text/javascript" ...
1
vote
2answers
18 views
Opening bootstrap modal with double click
I'm trying to open a modal double clicking. I'm using this piece of code but it's not working:
$('#link').dblclick(function () {
$('#myModal').modal('toggle');
});
Fiddle here: ...
0
votes
1answer
37 views
Twitter Bootstrap and Snap.js
I'm trying to integrate jakiestfu's Snap.js with Twitter Bootstrap.
I've got something that functions (I can get the content to slide, or open a drawer via a click event). However, I'm at the limit ...
0
votes
1answer
18 views
Bootstrap modal not showing as modal (Hot Towel)
I am using durandal and the Hot Towel template for a project and I am having issues getting a very simple modal dialog to appear.
Here is my code:
app.showMessage('Test Message');
The dialog is ...
0
votes
0answers
31 views
Why three of my jquerys cannot be loaded during my Wordpress theme development
I want to do a wordpress theme based on my website already developed by now. I have only one page website which mainly uses a jquery plugin 'Ascensor', and I also chose to use boostrap as the ...
0
votes
2answers
29 views
Twitter API: Url search for Username
I have a list of websites where I want to see if they have twitter accounts. I was curious if there is a url search for username in the API, or something of this nature. I've been reading and looking ...
0
votes
0answers
18 views
Hide Alert until parsley makes an error
I have made a form using Parsley validation and put the alerts inside an alert bar using bootstrap.
Now I want the alert bar to be hidden until parsley triggers an error. I don't know enough about ...
0
votes
5answers
30 views
How can I disable an unknown number of buttons and know which ones so I can enable only them again later?
Hi I am trying to disable all buttons when the user submits so while the page is loading they can't submit again or do other actions. But the page might also already have disabled buttons so I can't ...
0
votes
0answers
15 views
JQuery UI slide effect with twitter bootstrap
I'm using the toggle function to invoke the jquery ui slide effect. I'm actually having an visual effect but not the desired one.
$('#btn-register').click(function(){
...
0
votes
0answers
6 views
twitter-bootstrap icons does not appear with heroku
I am working on a Rails 4 application with ruby 2.0.0. I use twitter-bootstrap and I have a trouble with icon glyphs: http://twitter.github.io/bootstrap/base-css.html#icons
The problem is that these ...
2
votes
3answers
73 views
How to make div scale to 100% of browser width?
<div id="sidebar">sidebar</div>
<div id="content">content</div>
The sidebar is a fixed width of 100px. How do I make the width of content to 100% of the browser width?
...
0
votes
2answers
32 views
Adjust background image opacity on bootstrap hero unit
How can I edit my css to adjust the opacity on the background image in the hero unit without affecting the opacity of the text etc in the hero unit? Here is the draft site (yes i'll be paying for ...
0
votes
1answer
48 views
Cannot get Print button to work in Twitter Bootstrap modal popup from Carousel
I followed the Answer at the question "Twitter Bootstrap: Print content of modal window" but I have not yet been able to get anything to print. I am using PHP to loop through and display several ...
1
vote
1answer
24 views
How do i prevent bootstrap typeahead from double filtering non-matching results from ajax call
I'm using bootstrap typeahead with a jQuery ajax which we will call FILTER#1. In my case, an ajax search like "great tank" or "greattank" both produce a "Great Tank" ajax result but typeahead is 2nd ...
0
votes
1answer
26 views
Center content with Bootstrap
So, I have this code
<div class="featurette">
<img class="featurette-image pull-right" src="img/BreadBakersGuildLogo.jpg">
<div class="text-center">
...
0
votes
0answers
7 views
Safari on iPad - Incorrect handling of HTTP status code 204
We are rendering an ASP.Net web form with a runat="server" tag in a bootstrap modal. We use the built in bootstrap capability to use the jQuery load function perform a get request and then insert the ...
0
votes
1answer
14 views
Iframe position absolute not working in android browser
I have a simple web page with an iframe inside a div container.
Used bootstrap responsive every thing works fine with the below code:
<div id="container">
<iframe id="iframe2" ...
0
votes
0answers
24 views
textboxfor does not work in templates in twitterbootstrap.mvc4
I am using TwitterBootstrapMvc
trying to use editortemplates and specify the details in the templates
the template looks like below:
@model Int64?
@Html.Bootstrap().TextBoxFor(m => m)
...
0
votes
1answer
15 views
Use keyboard to scroll in bootstrap modal popup
I'm using a bootstrap modal to display builds logs for a continuous integration-style tool, and they are often quite long. I can scroll with the mouse scroll wheel (and by using the scroll bar, of ...






