Is there a way to utilize my own fixed size wrapper in conjunction with a responsive container class from Bootstrap without losing the responsiveness? Here is an example of my current code:
<div class="container">
<div class="wrapper">
<div class="row">
<div class="col-md-12 col-ms-12">
<p>Every home needs a little Christmas magic and we have the perfect recipe. All you need is: 1 beautifully decorated tree, a handful of twinkling lights, some decorations, and lots of gifts for your loved ones under the tree. Check out our promotional offers and get ready for the most magical holiday of the year.</p>
</div>
</div>
</div>
</div>
Here's the CSS I am using:
.wrapper {
width: 980px;
margin: 0 auto;
}
The "Container" class is defined by Bootstrap.
Thanks!