hello,
follow this
link
, you will find a tutorial that explain how reach your Css file and create a custom Css.
Once, you have understand where you can add your Css code, use this kind of code.
A little advice, put your custom code at the end of your frontend_custom.css, that will be more easy later to find and maybe correct it
For your align the text and your text color :
th#hikashop_cart_product_total_title,
th#hikashop_cart_product_quantity_title,
th#hikashop_cart_product_price_title,
th#hikashop_cart_product_name_title,
th#hikashop_cart_product_image_title {
text-align: center;
color: red;
}
your selector : th#hikashop_name
your css order: criteria
Css value: position, color etc...
Hope this will help you.
Regards,