Thread Starter
lealoo
(@lealoo)
Thanks so much.
This is more evidence of why I need to find a class or consulting so I can get someone to help me fill in the holes in my ‘swiss cheese’ understanding of css!!!
Thread Starter
lealoo
(@lealoo)
Got it, thanks. Looking at the bootstrap site, i see some code for creating a full-width jumbotron – is this what you were referring to in terms of documentation?
<div class=”jumbotron”>
<h1>Hello, world!</h1>
<p>…</p>
<p>Learn more</p>
</div>
To make the jumbotron full width, and without rounded corners, place it outside all .containers and instead add a .container within.
<div class=”jumbotron”>
<div class=”container”>
…
</div>
</div>