Magento 2.0.1 – How to Resize Individual Image in Widget

magento2product-images

I have created customize theme which extends to magento blank. I am using widget to show latest products in home page.

Now, My page look like this

easy for your reference

I want to resize the every image (catalog product list) in widget. I will expect my page look like this

expected result

Note : I could refer this link to change all image size but no luck. copy view.xml from blank theme, paste into app/design/…./mytheme/etc/view.xml. I change below content in view.xml

<image id="category_page_grid" type="small_image">
    <width>400</width>
    <height>400</height>
</image>
<image id="category_page_list" type="small_image">
    <width>400</width>
    <height>400</height>
</image>

but nothing get reflected

here I put two questions

  1. How to resize individual image in product list

  2. Why mytheme view.xml get not reflected

Related Topic