Lightweight material. Take the bootstrap line in the parent div and set the background of this div to the color of your choice.
Markup:
<div id="background-color"> <form id="form1" name="form1" method="post" action=""> <div class="row-fluid"> <div class="span6"> <label>First Name</label> <label for="textfield"></label> <input type="text" /> <label>Last Name</label> <label for="textfield"></label> <input type="text" /> </div> <div class="span6"> <label>Other</label> <label for="textfield"></label> <input type="text" /> <label>Fields</label> <label for="textfield"></label> <input type="text" /> <input type="submit" name="button" id="button" value="Submit" /> </form> </div> </form> </div> </div>
CSS:
#background-color {background-color: #CCC;}
I hope this helps
source share