Editing Table layout

0

Good afternoon!

I have basic knowledge of CSS, and I'm having a hard time completing a task. I need to create an email for abandoned cart in Magento. Follow the model that is.

<tr>
    <td>{{var row_item_row_number}}</td>
    <td><a href="{{store url="catalog/product/view" id="$row_item.product.id"}}">{{var row_item.name}}</a></td>
    <td align="center"><img src="{{thumbnail size="75" source="row_item.product"}}" alt="" /></td>
    <td>{{var row_item.product.description}}&nbsp;</td>
    <td align="right">{{var row_item.price_incl_tax|formatPrice}}</td>
    <td align="right">{{var row_item.qty_ordered|formatDecimal}}</td>
    <td align="bottom">{{var row_item.row_total_incl_tax|formatPrice}}</td>
    <td align="right"><a href="{{store url="review/product/list" id="$row_item.product.id"}}">Leave a review</a></td>
</tr>

I needed to leave it basically similar to the one in the picture, image 250 x 250 product name on the right side with low price and buy button. Someone could tell me how to stylize, I'm very lost because as I said I have no knowledge of any variable.

    
asked by anonymous 31.10.2018 / 20:53

1 answer

-1

Talk blz face?

It's kind of complicated to help you because you can not see your code and it would also be embarrassing for you if I did the whole html right? rs

If the problem is just to do the layout and you know how to call the Magento information (like product name, product photo etc) I believe that article here will help you a lot

Only by doing this example will you get the concept right.

    
01.11.2018 / 17:45