Hello,
In your case if you want to hide the Ok & Cancel butons, the solution will be to use that kind of CSS code :
.hikashop_product_contact_page #toolbar {
display: none;
}
www.hikashop.com/support/documentation/1...the-display.html#css
Note that you can also edit the "contact" file of the "product" view of your front-end template via "Hikashop->Display->Views" and change these lines :
<div class="toolbar" id="toolbar" style="float: right;">
<button class="btn" type="button" onclick="checkFields();"><img src="<?php echo HIKASHOP_IMAGES; ?>ok.png" alt=""/><?php echo JText::_('OK'); ?></button>
<?php if(JRequest::getCmd('tmpl', '') != 'component') { ?>
<button class="btn" type="button" onclick="history.back();"><img src="<?php echo HIKASHOP_IMAGES; ?>cancel.png" alt=""/><?php echo JText::_('HIKA_CANCEL'); ?></button>
<?php } ?>
</div>