Hello Claire,
1. For the second screenshot, the solution will probably be to that of CSS code :
#hikashop_product_left_part {
width: 100%;
}
#hikashop_main_image_div {
float: left;
}
.hikashop_child_image {
width: 149px !important;
height: 91px !important;
}
#hikashop_product_right_part {
float: right;
margin-top: -60px;
padding-left: 30px;
}
#hikashop_product_description_main {
float: right;
margin-right: -123px !important;
}
2. For the responsive screenshot, the solution will be to use Media queries through your CSS file, here is a
thread
where you'll find an example :
You can do the modifications in the frontend css file via the menu Configuration > Display > CSS
Use the @media tags to change the width of the columns when the width of the page is less than xx.
ex:
@media (max-width: 767px) {
.hikashop_products .row-fluid .span4 { width: 49% !important;}
}
Here is some documentation about the layout customization:
www.hikashop.com/support/documentation/1...ize-the-display.html