Popup Page without title and Close button

0
Hi Guys,   I have a requirement where a popup page should not have a title and close button. Could you please let me know how to implement this functionality. Thanks in advance    
asked
1 answers
0

You could achieve this by using custom CSS.

Add a custom class to the popup page where you don't want to show the title and close
(for example: popup-no-header).

Then add this to your custom CSS:

.popup-no-header .mx-dialog-header {
    display: none;
}

 

Hope this helps!

answered