Need to resize the width of the upload widget. Tried following css codes. It's applying but somehow overridden by default size (300 px).
#root_pagemashupcontainer-2_fileuploadext-33-bounding-box{
width: 240px; !important
}
Solved! Go to Solution.
Working fine with following code.
fileuploadext-11 --> Widget ID
.widget-fileuploadext .fileuploadext-file-input {
width: 170px;
}
.widget-fileuploadext .file-browser {
width: 220px;
}
#root_pagemashupcontainer-2_fileuploadext-11 {
width: 240px !important;
}
#root_pagemashupcontainer-2_fileuploadext-11-bounding-box{
width: 240px !important;
}
You can refer following article to assist you further
https://www.ptc.com/en/support/article/CS377455?source=search
https://www.ptc.com/en/support/article/CS367776?source=search
Thanks
Bhawna
Working fine with following code.
fileuploadext-11 --> Widget ID
.widget-fileuploadext .fileuploadext-file-input {
width: 170px;
}
.widget-fileuploadext .file-browser {
width: 220px;
}
#root_pagemashupcontainer-2_fileuploadext-11 {
width: 240px !important;
}
#root_pagemashupcontainer-2_fileuploadext-11-bounding-box{
width: 240px !important;
}