Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I overwrite the stylings in Twitter Bootstrap? For instance, I am currently using a .sidebar class that has the CSS rule 'float: left;' How can I change this so that it goes to the right instead? I'm using HAML and SASS but am relatively new to web development.

Thanks!

John

share|improve this question

5 Answers

up vote 8 down vote accepted

Add your own class, ex: <div class="sidebar right"></div>, with the CSS as

.sidebar.right { 
    float:right
} 
share|improve this answer

All these tips will work, but a simpler way might be to include your stylesheet after the Bootstrap styles.

If you include your css (site-specific.css) after Bootstrap's (bootstrap.css), you can override rules by redefining them.

For example, if this is how you include CSS in your <head>

<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/site-specific.css" />

You can simply move the sidebar to the right by writing (in your site-specific.css file):

.sidebar {
    float: right;
}

Forgive the lack of HAML and SASS, I do not know them well enough to write tutorials in them.

share|improve this answer
What about the "-responsive.css" styles? Can those be overwritten in the same way? – Claudiu Constantin Nov 18 '12 at 10:24
1  
@ClaudiuConstantin I see no reason why not. The rule of thumb is the second style will always trump the first if two are the same level of specificity. As long as your style comes after it will override. – citelao Nov 19 '12 at 22:27
I load my style after the bootstrap's css files, but I can't override any elements unless I force it with "!important". – Kreker Apr 19 at 7:46
1  
@Kreker That probably has a lot to do with specificity. You can read up about it here (old article), but basically .sidebar.right is more specific than .sidebar. That is probably the problem. Use web inspector to figure out what's overriding it. – citelao Apr 21 at 0:55
1  
@Kreker yup, that's the idea. The problem with !important is that you can never override it again in the future. – citelao Apr 23 at 12:11
show 3 more comments

You can overwrite a CSS class by making it "more specific".

You go up the HTML tree, and specify parent elements:

div.sidebar { ... } is more specific than .sidebar { ... }

You can go all the way up to BODY if you need to:

body .sidebar { ... } will override virtually anything.

See this handy guide: http://css-tricks.com/855-specifics-on-css-specificity/

share|improve this answer

Came across this late, but I think it could use another answer.

If you're using sass, you can actually change the variables before you import bootstrap. http://twitter.github.com/bootstrap/customize.html#variables

Change any of them, such as:

$bodyBackground: red;
@import "bootstrap";

Alternatively if there isn't a variable available for what you want to change, you can override the styles or add your own.

Sass:

@import "bootstrap";

/* override anything manually, like rounded buttons */
.btn {
  border-radius: 0;
}

Also see this: Proper SCSS Asset Structure in Rails

share|improve this answer

I know this is an old question but still, I came across a similar problem and i realized that my "not working" css code in my bootstrapOverload.css file was written after the media queries. when I moved it above media queries it started working.

Just in case someone else is facing the same problem

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.