Change Width of Modal

Created on 25 August 2023, over 1 year ago
Updated 9 April 2024, 12 months ago

Hiya,

I'm using a link in my twig file like so:

<a class="use-ajax" data-dialog-type="modal" href="/path"><img class="info-icon" src="/path/to/image/information.jpg"/></a>

The modal has a fixed width of 300px; what's the best way to modify this to make it a responsive width?

Thanks,
Glenn

๐Ÿ’ฌ Support request
Status

Fixed

Version

1.4

Component

Code

Created by

๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand glennnz

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @glennnz
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand glennnz
  • Assigned to viren18febs
  • Status changed to Needs review over 1 year ago
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia viren18febs

    Hi glennnz,

    You can use the modal classes for predefined size of module as per requirements, these are some of them.
    .modal-sm, .modal-lg, .modal-xl.

    if you want to fully responsive, then you need to use media queries in CSS file.

  • Issue was unassigned.
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand glennnz

    @viren18febS

    Like this?

    <a class="use-ajax" data-dialog-type="modal-xl" href="..........

    This doesn't work, the link doesn't open, no modal window appears.

    Thanks,
    Glenn

  • Status changed to Active over 1 year ago
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand glennnz
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia viren18febs

    @glennnz

    You can use this. This is the working example and you can change it as per your requirement..

    <div class="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">
          ...
        </div>
      </div>
    </div>
    <button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bd-example-modal-lg">Large popup</button>
  • Status changed to Needs review over 1 year ago
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia viren18febs

    Or You can define the size of modal as follows.

    Node 3

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand glennnz

    #9 works with a small typo correction, add quotes, thus:

    <a href=โ€/node/3โ€ data-dialog-type=โ€modalโ€ class=โ€use-ajaxโ€ data-dialog-option="{&quot;width&quot;:800, &quot;height&quot;:500}">Node 3</a>

  • Status changed to Fixed over 1 year ago
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand glennnz
  • Automatically closed - issue fixed for 2 weeks with no activity.

  • Status changed to Fixed 12 months ago
  • ๐Ÿ‡ง๐Ÿ‡ชBelgium leanderjcc Ghent

    This wasn't working for me as the attribute should be "data-dialog-options" instead of "data-dialog-option".

    Thus, the correct example being:
    <a href=โ€/node/3โ€ data-dialog-type=โ€modalโ€ class=โ€use-ajaxโ€ data-dialog-options="{&quot;width&quot;:800, &quot;height&quot;:500}">Node 3</a>

    As form element:

    $form['somelink'] = [
      '#type' => 'link',
      '#title' => 'Some link',
      '#url' => $url,
      '#attributes' => [
        'class' => [
          'use-ajax',
        ],
        'data-dialog-type' => 'modal',
        'data-dialog-options' => Json::encode([
          'width' => 800,
          'height' => 500,
        ]),
      ],
    ];
    
Production build 0.71.5 2024