Jump to content
  • 0

Cms Plugin: How Get 100% Width For A Block In Page Content


Question

3 answers to this question

Recommended Posts

  • 0
Posted

The best way is to move the jumbotron outside of its current container, as Paul mentioned.

 

However, if that's not doable, you could do absolute positioning, e.g.

#myJumbotron {
left:0;
width:100%;
position:absolute;
}


/* the div immediately after #myJumbotron */
div.container {
margin-top:200px;
}

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...