# 🛠technical-support
RaphaeL
RaphaeL·8 replies

In short , i want to scale/change my widget on the site. For "widget" i mean the rectangle that appears after i press the Pop-Up. Could anyone provide helpful information regarding this?

Sahil | YourGPT
Sahil | YourGPT03/07/2025 11:58

hello @RaphaeL Could you please let me know which plan you’re on? Also, do you want to customize the size of the popup window of the widget ?

RaphaeL
RaphaeL03/07/2025 12:17

Hello, im currently on the Professional plan

RaphaeL
RaphaeL03/07/2025 12:19

@Sahil Yes, i want to change the size of the window, Like the size of this where the green arrows are

Sahil | YourGPT
Sahil | YourGPT03/07/2025 12:30

Let me share a CSS snippet you can add to the CSS section under Widget > Branding Settings:

  max-width: 100%;
  width: 600px;
}```

You can adjust the width value as needed and test the changes. The same approach applies if you want to modify the height — just add a height property accordingly.
RaphaeL
RaphaeL03/07/2025 12:33

Great it works now, could you please add in the code another section for height?

RaphaeL
RaphaeL03/07/2025 12:34

Never mind,

.ygpts-frame.ygpts-frame { max-width: 100%; width: 400px; max-height: 100%; height: 500px; }

This is the code if anyone else will be reading this thread

RaphaeL
RaphaeL03/07/2025 12:34

Thanks for your support Sahil, have a nice day

Sahil | YourGPT
Sahil | YourGPT03/07/2025 12:56

You're welcome