Hi,
HikaShop uses your website template CSS.
If you look at the page of the link below, which is a joomla page, the input fields there display the same way as the ones on the checkout page of HikaShop :
www.thrilltime.byethost14.com/hb/index.p...m_user&task=register
So you need to change the CSS of your template.
For example, if you want to change the background color of the input fields, you should change the CSS code :
input {
color:#CCCCCC;
margin:0;
outline:medium none;
}
to:
input {
color:#CCCCCC;
margin:0;
outline:medium none;
background-color:#000000;
}
in your template CSS file
www.thrilltime.byethost14.com/hb/templat...112/css/template.css
near line 50.