HTML Tags for Edge

HTML Tags for Edge

holly2326
Visitor
1 0 0

I'm working on integrating Edge with Shopify, and to properly format the product descriptions we currently have, Edge requires the descriptions to be in HTML format. How would you write the product description shown in the image below using HTML tags?
Screen Shot 2024-06-27 at 1.22.30 PM.png

Reply 1 (1)

Himanshu7
Shopify Partner
17 0 0

Hi,

For the mentioned situation, here is the code:

<div class="space">
<ul>
<li>18K white gold</li>
<li>1.45 total diamond carat weight</li>
<li>Stone count: 165 round diamonds</li>
<li>Pave flower diamond</li>
</ul>
<p><em>Other sizes are made to order, which may affect pricing. Please contact us for sizing and additional information <u><b>here</b></u>.</em></p>
</div>

<style>
.space{
margin-left: 25px;
}
.space ul li, p {
font-size: x-large;
font-family: cursive;
color: black;
}
</style>

{% schema %}
{
"name": "test",
"settings": [],
"presets": [
{
"name": "test"
}
]
}
{% endschema %}

HP