19
Views
7
Comments
Solved
How to do Remove border from popUp?
Question

I want remove style border from popUp

2026-02-16 05-51-10
Sahana K
Solution

Hi,

In the Popup Widget's properties, add a class name like custom-popup. 

.custom-popup {

    border: none !important; 
box-shadow: none !important; 

}

Thanks,
sahana

UserImage.jpg
Fabricio Farias Oliveira

Thanks, This solution solved my problem!

2025-12-04 09-01-03
Kiet Phan
Champion

Popup dialog has "popup-dialog" class, you can add this class into your screen CSS sheet, and add what every you want.

Incase you want to remove border, let do it:

  1. .popup-dialog  {
  2.     border:none;
  3. }
2026-02-16 05-51-10
Sahana K
Solution

Hi,

In the Popup Widget's properties, add a class name like custom-popup. 

.custom-popup {

    border: none !important; 
box-shadow: none !important; 

}

Thanks,
sahana

UserImage.jpg
Fabricio Farias Oliveira

Thanks, This solution solved my problem!

2023-03-24 11-55-45
Pawan Purohit

Hi,

You can override the default styling by adding custom CSS: 

 Steps to Apply:

  1. Open the popup widget in your screen/block.
  2. Add a custom class (e.g., popup-class).
  3. Go to the Styles Editor (CSS section) in your module.
  4. Paste the above CSS code to override the default popup border.

like

.popup-class  {

    border: none !important;

    box-shadow: none !important;

}

2023-02-19 05-11-08
Faais

Hi Fabricio,
Add an extended class for that popup like this: 


And write the following CSS code: 

.popup-dialog.new-class{
   border:none;
}

2024-07-12 05-57-50
Gourav Shrivastava
Champion

Hello @Fabricio Farias Oliveira 

I would recommend inspecting the popup in the browser and adjusting the style as needed. Simply removing the border may not be the best approach for achieving a good UI 


Regards

Gourav Shrivastava

2025-02-10 08-07-05
Sudha Narayanan

Hi @Fabricio Farias Oliveira ,

.popup-class {

    border: none !important;

    box-shadow: none !important;

}

I hope this class will help You,

Thanks,

Sudha Narayanan 

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.