Setting widget designer width

Posted by Community Admin on 05-Aug-2018 10:20

Setting widget designer width

All Replies

Posted by Community Admin on 19-Apr-2017 00:00

I have a custom widget designer with an image selector, however when a large image is selected and previewed the image goes outside the bounds of the modal.

Does anyone know if it's possible to specify a widget designers width?

 

Thanks in advance

Posted by Community Admin on 20-Apr-2017 00:00

May be i get you wrong. But, you can easily set width of widget designer popup through CSS. Example:

.sfPageEditor  #RadWindowWrapper_PropertyEditorDialog
    width: 96% !important;
    height: 96% !important;
    top: 1% !important;
    left: 1% !important;
  1. width96% !important;
  2. height96% !important;
  3. top1% !important;
  4. left1% !important;
  1. width96% !important;
  2. height96% !important;
  3. top1% !important;
  4. left1% !important;

This thread is closed