Hi vagelis28,
Please try the way below to hide the size section.
1. Open file "CuteSoft_Client\CuteEditor\Dialogs\InsertImage.aspx"
2. Find section below, it is the size section
- <table border="0" cellpadding="0" cellspacing="0" class="normal">
- <tr>
- <td style="width: 100; white-space: nowrap">
- [[Width]]:</td>
- <td>
- <input type="text" size="2" id="inp_width" onkeyup="checkConstrains('width');" 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('height');"
- onkeypress="return CancelEventIfNotDigit()" style="width: 80px" />
- </td>
- </tr>
- <tr>
- <td colspan="2">
- <input type="checkbox" id="constrain_prop" checked="checked" onclick="BLOCKED SCRIPTtoggleConstrains();" />
- [[ConstrainProportions]]
- </td>
- </tr>
- </table>
3. Change it to
- <table border="0" cellpadding="0" cellspacing="0" class="normal" style="visibility:hidden">
- <tr>
- <td style="width: 100; white-space: nowrap">
- [[Width]]:</td>
- <td>
- <input type="text" size="2" id="inp_width" onkeyup="checkConstrains('width');" 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('height');"
- onkeypress="return CancelEventIfNotDigit()" style="width: 80px" />
- </td>
- </tr>
- <tr>
- <td colspan="2">
- <input type="checkbox" id="constrain_prop" checked="checked" onclick="BLOCKED SCRIPTtoggleConstrains();" />
- [[ConstrainProportions]]
- </td>
- </tr>
- </table>
Regards,
ken