How to change twitter bootstrap background color

css, html, twitter-bootstrap

Solution

Download all of the bootstrap files and somewhere inside the .css file add:

body {
   background:red !important;
}

Problem

I already tried the custom function from the website, but keeps give me error, and tried the BASIC method too: ``` body {background-color:red;} ``` so, does anyone know?

Original source