Oleg Antonyan
Oleg Antonyan

Reputation: 3113

Modal width (increase)

I want a modal to be 80% or so of a screen width. modal-lg isn't large enough. This:

.modal .modal-dialog {
  width: 80%;
}

Doesn't work with Bootstrap 4.

Upvotes: 76

Views: 180112

Answers (14)

kitsu.eb
kitsu.eb

Reputation: 3066

Bootstrap 4 includes sizing utilities. You can change the size to 25/50/75/100% of the page width (I wish there were even more increments).

To use these we will replace the modal-lg class. Both the default width and modal-lg use css max-width to control the modal's width, so first add the mw-100 class to effectively disable max-width. Then just add the width class you want, e.g. w-75.

Note that you should place the mw-100 and w-75 classes in the div with the modal-dialog class, not the modal div e.g.,

<div class='modal-dialog mw-100 w-75'>
    ...
</div>

Also, we can even use the well known container class (instead of specifying the size), like:

<div class="modal-dialog mw-100">
    <div class="modal-content container">
        <div class="modal-body">
            ...
        </div>
    </div>
</div>

Upvotes: 115

Plamen S.
Plamen S.

Reputation: 1

You can use a combination of absolute and relative units

.modal-dialog-xw {
  margin-left: auto;
  margin-right: auto;
  min-width: 330px;    /* To prevent shrinking of very small screens (Galaxy S9 for example) */
  max-width: 75%;      /* To use 75% of the width available. Or set in pixels if need. */
}

In html code add after .modal-dialog

<div class="modal-dialog modal-dialog-xw" role="document">...</div>

Upvotes: 0

Sathish Kumar
Sathish Kumar

Reputation: 91

Set max-width:80%; as an inline stylesheet

<div class="modal-dialog modal-lg" role="document" style="max-width: 80%;">

Upvotes: 1

John Elias Kwandikwa
John Elias Kwandikwa

Reputation: 13

So i have been struggling too on the same issue. The quick and easiest way to solve the problem is by just adding

  1. modal-lg on your modal Div

Example <div class="modal-dialog modal-lg">

Upvotes: 0

repsajg
repsajg

Reputation: 11

Try this, This was the solution that worked for me:

<div class="modal-dialog" style="min-width: 1500px" role="document">

Upvotes: 1

Asra Fud Duha
Asra Fud Duha

Reputation: 630

The following solution will work for Bootstrap 4.

.modal .modal-dialog {
  max-width: 850px;
}

Upvotes: 1

claudios
claudios

Reputation: 6656

Bootstrap 3

You can create or just override default bootstrap modal-lgby doing below:

.modal-lg {
    max-width: 80%;
}

If not working just add !important so it would look like below

.modal-lg {
    max-width: 80% !important;
}

Now call the modal-lg.

<div class="modal-dialog modal-lg" role="document">
 <!-- some modal content --->
</div

For Bootstrap 4 refer to @kitsu.eb answer. Also note that using bootstrap 4 utilities might break the responsiveness.

Upvotes: 115

Nemus
Nemus

Reputation: 3995

This was the solution that worked for me:

.modal{
 padding: 0 !important;
}
.modal-dialog {
  max-width: 80% !important;
  height: 100%;
  padding: 0;
  margin: 0;
}

.modal-content {
  border-radius: 0 !important;
  height: 100%;
}
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" />
<a href="#" class="menu-toggler" data-toggle="modal" data-target=".bd-example-modal-lg">Menu</a>

<div class="modal mobile-nav-modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
  <div class="modal-dialog modal-lg">
    <div class="modal-content">
      <a href="#" class="" data-dismiss="modal">Close Menu</a>

      <nav class="modal-nav">
        <ul>
          <li><a data-toggle="collapse" href="#collapseExample" role="button">Shop</a>
            <div class="collapse" id="collapseExample">
              <ul>
                <li><a href="#">List 1</a></li>
                <li><a href="#">List 2</a></li>
                <li><a href="#">List 3</a></li>
              </ul>
              <ul>
                <li><a href="#">List 1</a></li>
                <li><a href="#">List 2</a></li>
                <li><a href="#">List 3</a></li>
              </ul>
            </div>
          </li>
          <li><a href="#">Made To Order</a></li>
          <li><a href="#">Heritage</a></li>
          <li><a href="#">Style & Fit</a></li>
          <li><a href="#">Sign In</a></li>
        </ul>
      </nav>
    </div>
  </div>
</div>

Upvotes: 3

CeezS
CeezS

Reputation: 91

In Bootstrap 4 you have to use 'max-width' attribute and then it works perfectly.

<div id="modal_dialog" class="modal fade" tabindex="-1" role="dialog" style="display: none;">
<div class="modal-dialog" style="max-width: 1350px!important;" role="document">
    <div class="modal-content">
        <div class="modal-body">
            Sample text
        </div>
    </div>
</div>

Upvotes: 9

Joel Enanod Jr
Joel Enanod Jr

Reputation: 669

For responsive answer.

@media (min-width: 992px) {
  .modal-dialog {
    max-width: 80%;
  }
}

Upvotes: 27

s.a.filko
s.a.filko

Reputation: 21

If you use Sass,

according to the documentation you can customize your default values.

In your case, you can easily override the variable named $modal-lg in your _custom.scss file.

Upvotes: 1

Unknown_Coder
Unknown_Coder

Reputation: 774

Simply Use !important after giving width of that class that is override your class.

For Example

.modal .modal-dialog {
  width: 850px !important;
}

Hopefully this will works for you.

Upvotes: 3

mjishigh
mjishigh

Reputation: 73

try to use px

.modal .modal-dialog {
  width: 850px;
}

just change the size.

Upvotes: 2

Elie Nassif
Elie Nassif

Reputation: 462

Make sure your modal is not placed in a container, try to add the !important annotation if it's not changing the width from the original one.

Upvotes: 1

Related Questions