| 1 |
<div class="imh_6310_tabs_panel_settings"> |
| 2 |
<form method="post"> |
| 3 |
<?php wp_nonce_field("imh_6310_nonce_field_form") ?> |
| 4 |
<input type="hidden" name="id" value="<?php echo esc_attr($ids) ?>" /> |
| 5 |
<input type="hidden" name="main_image" value="<?php echo isset($cssData['main_image']) ? esc_attr($cssData['main_image']) : '' ?>" /> |
| 6 |
<input type="hidden" name="json_data" id="imh_6310_json_field" value="<?php echo isset($cssData['json_data']) ? esc_attr($cssData['json_data']) : '' ?>" /> |
| 7 |
<div class="imh-6310-tab-content"> |
| 8 |
<div id="tab-1"> |
| 9 |
<div class="row imh_6310_padding_15_px"> |
| 10 |
<h3 class="imh-6310-tab-menu-settings">Image hotspot Settings</h3> |
| 11 |
<div class="imh-6310-col-50"> |
| 12 |
<table class="table table-responsive imh_6310_admin_table"> |
| 13 |
<tr height="45"> |
| 14 |
<td> |
| 15 |
<b>Hotspot Name</b> |
| 16 |
</td> |
| 17 |
<td> |
| 18 |
<input type="text" class="imh-6310-form-input" required autocomplete="off" name="name" placeholder="Enter Hotspot name" value="<?php echo isset($styledata['name']) ? imh_6310_replace(esc_attr($styledata['name'])) : 'Hotspot 1' ?>"> |
| 19 |
</td> |
| 20 |
</tr> |
| 21 |
</table> |
| 22 |
</div> |
| 23 |
<div class="imh-6310-col-50"> |
| 24 |
<table class="table table-responsive imh_6310_admin_table"> |
| 25 |
<tr height="45"> |
| 26 |
<td> |
| 27 |
<b>Custom CSS</b> |
| 28 |
</td> |
| 29 |
<td> |
| 30 |
<textarea class="imh-6310-form-input" name="custom_css" rows="4"><?php echo isset($cssData['custom_css']) ? esc_attr($cssData['custom_css']) : '' ?></textarea> |
| 31 |
</td> |
| 32 |
</tr> |
| 33 |
</table> |
| 34 |
</div> |
| 35 |
</div> |
| 36 |
</div> |
| 37 |
<hr /> |
| 38 |
<input type="submit" name="update_style_change" value="Save" class="imh-6310-btn-primary imh-6310-pull-right imh-6310-insert-ja-data" style="margin-right: 15px; margin-bottom: 10px; display: block" /> |
| 39 |
<br class="imh-6310-clear" /> |
| 40 |
</div> |
| 41 |
</form> |
| 42 |
</div> |
| 43 |
|
| 44 |
|