Hello,
The
DivWidth is just a property that has some value (in this case default value is 300). You need to change the styles that are generated in the code of the web part according to your needs. For example:
mStyleOptions = "width: " + DivWidth + "px; height: " + DivHeight + "px; overflow: hidden; position: absolute; left: 0px;";There are some other places where the
DivWidth property is used in the code behind. You can find them by searching for the expression
DivWidth.
Please do not forget to clone the the web part before any modification:
Modifying the code of standard web partsBest regards,
Michal Legen