cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

ThingWorx Navigate is now Windchill Navigate Learn More

Translate the entire conversation x

How to resize the file upload widget width?

SC_10187722
7-Bedrock

How to resize the file upload widget width?

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 
}

SC_10187722_0-1746683266531.png

 

ACCEPTED SOLUTION

Accepted Solutions

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;
}

 

 

View solution in original post

3 REPLIES 3
slangley
23-Emerald III
(To:SC_10187722)

Hi @SC_10187722 

 

What version of ThingWorx are you running?

 

Regards.

 

--Sharon

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;
}

 

 

Announcements


Top Tags