Is there a way to transform this https://i.sstatic.net/944F8.png
Into this: https://i.sstatic.net/k4Ch8.png
I want the second column to be uniform across all categories. Here is how my current code appears:
<div class="prod-card-fields-static col-5">
{[if_manufacturer]}
<p class="m-0">{[lang_manufacturer]}: <b>{[manufacturer]}</b></p>
{[/if_manufacturer]}
{[if_custom_field_1]}
<p class="m-0">{[custom_field_1_name]}: <b>{[custom_field_1]}</b></p>
{[/if_custom_field_1]}
{[if_custom_field_2]}
<p class="m-0">{[custom_field_2_name]}: <b>{[custom_field_2]}</b></p>
{[/if_custom_field_2]}
{[if_custom_field_3]}
<p class="m-0">{[custom_field_3_name]}: <b>{[custom_field_3]}</b></p>
{[/if_custom_field_3]}
{[if_category_1]}
<p class="m-0">{[category_1_name]}: <b>{[category_1]}</b></p>
{[/if_category_1]}
{[if_category_2]}
<p class="m-0">{[category_2_name]}: <b>{[category_2]}</b></p>
{[/if_category_2]}
{[if_category_3]}
<p class="m-0">{[category_3_name]}: <b>{[category_3]}</b></p>
{[/if_category_3]}
</div>
</div>