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}} </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.