Hi,
Just like most other similar appearance "issues", this can be "fixed" per CSS:
www.hikashop.com/support/support/documen...the-display.html#css
From what I understand, the following additions to your custom CSS might do:
/* Removing empty table header */
.hikashop_products_table thead {
display: none;
}
/* Setting table background color = white */
.hikashop_products .table-striped tbody > tr:nth-child(2n+1) > td {
background-color: #ffffff;
}
If I understood wrongly, best post a screenshot with markers/notes of what you want changed and how.
However, reading the documentation linked to above and by using Firebug or a comparable browser console and basic knowledge of CSS you can do so yourself.