Creating a pop-up modal layout without a title section

1
How can I create a new pop-up modal layout that doesn’t have a title section?
asked
1 answers
2

Hi Kathleen,

Add the following styling snippet to your scss:

.no-header {
    .mx-window-header {
        display: none;
    }
}

and add the no-header class to either the layout or the page appearance properties:

And your popup will look like this:

 

answered