- Posts: 138
- Thank you received: 0
Problem with images
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
When you set the size of thumbnails, it applies to them immediately but they are not really resized. They still have their old size and your browser is doing the resize dynamically, which can lead to pixelization. You can delete the files in the folder media/com_hikashop/upload/thumbnails so that HikaShop recreates the thumbnails automatically with your new settings.
If you want different sizes on the listing and the product page, that's currently not possible with the options in the config.
You will have to use some CSS like explained here : www.hikashop.com/en/support/forum/4-how-...duct-page.html#10151
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
#hikashop_main_image_thumb_div{height: 310px !important;}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Concerning your problem of images, the CSS I gave in my previous message solves the problem:
#hikashop_main_image_thumb_div{height: 310px !important;}
You just need to add it to the CSS of hikashop via the interface in the tab display of the config.
The title is actually at the same height but since you added some CSS to make it bigger, it is a bit off compared to the price. You can add some more CSS for that:
.hikashop_product_price_main{
padding-top: 5px;
display: block;
}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
<span id="hikashop_product_name_main" class="hikashop_product_name_main">
<?php
echo $this->element->product_name;
?>
</span>
inside the hikashop_product_right_part div.
Please Log in or Create an account to join the conversation.