Search code examples
csstwitter-bootstrapyii2material-designbootstrap-material-design

Full width container or jumbotron in Yii2 With Material Bootstrap Library


I'm trying to get full width container with jumbotron or something like this in full width:

<div class="container" style="margin: 0 auto;width: 100%;background-color: red">
  <div class="jumbotron">
    <h1>Full Width Layout</h1>

    <p class="lead">The Bootstrap 3 grid is fluid only. This example shows how to use a custom container to create a fixed width layout.</p>

    <p><a class="btn btn-large btn-success" href="http://bootply.com/tagged/bootstrap-3" target="ext">More
                    Examples</a>
    </p>
  </div>
</div>

currently i'm using : https://github.com/FezVrasta/bootstrap-material-design with Yii2.

I've tryied everything about this, but still the problem exist and it's not full width.


Solution

  • If you want full width

    you don't have to use container in your page and remember to remove this class also from the layout you are using. (or you can define a layout without this class and set in your action $this->layout= "yourNewLayout"; before render the page) typically the default layout is located in /view/layouts/main.php

    then you must remove this line:

     class="container" 
    

    then you can see a full with yii2 web app.

    and just a minor

    you shuold use:

      style="margin: 0 auto;width: 100%; background-color: red;">