Thank you!
Although Im not totally sure where i should place this code?
should i find a certain plugin theme plugin, or put in the CSS section or another part of the configuration settings?
I did find this in the 'frontend_custom.css' :
#hikashop_cart .hikashop_cart_product_name a{
font-weight:bold;
}
.hikashop_cart_product_name_value{
width:40%;
}
.hikashop_cart_title{
font-weight: bold;
}
I changed the "width:40%;" to "width:10px!important;"
but after saving it and refreshing my page, there didnt seem to be a change.
I seemed to have found what could be the problelm when inspecting the elements with chrome.
in the elements bar i found this:
<div id=" hikashop_checkout_cart" class="hikashop_checkout_cart">
<table class="table table-striped table-hover" width="100%">...</table>
in the browser window the inspect element popup for the above(bottom) line declares this:
table.table.table-striped.table-hover 949px 172px
it is indeed too wide.
The width should be 700px, but i cant seem to find the correlating table or a place in the CSS to fix it.