0
Good afternoon!
I have basic CSS knowledge, and I’m having a hard time completing a task. I need to create an email for an abandoned cart in Magento. Follows 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 let it basically look like the photo, 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 variable.