Hi cw808,
Hide the width and height section when double click the image
1.Open file "CuteSoft_Client\CuteEditor\Dialogs\Tag\tag_image.ascx "
2. Find section below
- <tr>
- <td style="white-space: nowrap;">
- [[Width]]:</td>
- <td>
- <input type="text" size="2" id="inp_width" onkeyup="checkConstrains('width');" rem-skipautofirechanged="1"
- onkeypress="return CancelEventIfNotDigit()" style="width: 80px;" />
- </td>
- <td rowspan="2" align="right" valign="middle">
- <img src="Load.ashx?type=image&file=locked.gif" id="imgLock" width="25" height="32"
- title="[[ConstrainProportions]]" /></td>
- </tr>
- <tr>
- <td>
- [[Height]]:</td>
- <td>
- <input type="text" size="2" id="inp_height" onkeyup="checkConstrains('width');" rem-skipautofirechanged="1"
- onkeypress="return CancelEventIfNotDigit()" style="width: 80px;" />
- </td>
- </tr>
3. Change to
- <tr style="visibility: hidden">
- <td style="white-space: nowrap;">
- [[Width]]:</td>
- <td>
- <input type="text" size="2" id="inp_width" onkeyup="checkConstrains('width');" rem-skipautofirechanged="1"
- onkeypress="return CancelEventIfNotDigit()" style="width: 80px;" />
- </td>
- <td rowspan="2" align="right" valign="middle">
- <img src="Load.ashx?type=image&file=locked.gif" id="imgLock" width="25" height="32"
- title="[[ConstrainProportions]]" /></td>
- </tr>
- <tr style="visibility: hidden">
- <td>
- [[Height]]:</td>
- <td>
- <input type="text" size="2" id="inp_height" onkeyup="checkConstrains('width');" rem-skipautofirechanged="1"
- onkeypress="return CancelEventIfNotDigit()" style="width: 80px;" />
- </td>
- </tr>
In Image Editor dialog we have not show the width and height of the image, can you post a screenshot to show which section you mean?
Regards,
Ken