My answer:
Some templates can not adjust its height with increasing the height of the workspace.
The most fast solution will make contact information already disclosed.
You should change file components/com_ipricecalc/views/category/tmpl/default.php
line 239:
| Code: |
<div style="display: none;" id="order_dat" name="order_dat">
|
remove style="display: none;", should be the next:
| Code: |
<div id="order_dat" name="order_dat">
|
Also you should remove "Advanced order" button. Remove this code, starting line 236:
| Code: |
<center><input type="button" class="button" onclick="document.getElementById('order_dat').style.display=''; style.display='none'" value="<?php echo JText::_('Preorder');?>">
</center>
<br>
|