Hi, I am currently customizing the email notification. I need help in getting things right.
I would like to have these two links to be placed in one sentence with same size font. Like this,
“View your order OR Visit our store” But as you can see, they are in three paragraphs..? (below)
here’s the code that I have now.
or if this is too small,… here’s written one
{% if order_status_url %}
|
{% if shop.url %}
{% endif %} |
Hi @Eileen12 , change this part:
<table>
<tr>
<td>
</td>
</tr>
<table>
<tr>
<td>
View your order
</td>
</tr>
</table>
{% if shop.url %}
<table>
<tr>
<td>
OR
Visit our store
</td>
</tr>
</table>
with this:
<table>
<tr>
<td>
</td>
</tr>
{% if shop.url %}
<table>
<tr>
<td>
View your order
</td>
<td>
OR Visit our store
</td>
</tr>
</table>
Hi, This is how it looks like if I have that code,
Hi @Eileen12 , here it is:
This is how it looks. Can we do equal spacing between OR?
<table>
<tr>
<td>
</td>
</tr>
{% if shop.url %}
<table>
<tr>
<td>
View your order
</td>
<td>
OR
</td>
<td>
Visit our store
</td>
</tr>
</table>
Change this value ‘6px’ OR until it’s the same spacing.