ProductTemplate.Simple.cshtml - align the header tag left

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
2 years ago
HI there
im using nopcommrce version 4.2
i use the template ProductTemplate.Simple.cshtml for my products.
i would like howvere that the product name h1 totle is aligned directly above the product picture.
rather than to the left.
is there a way to do this?
i asusme its this code?

  <div class="product-name">
                            <h1 itemprop="name">
                                @Model.Name
                            </h1>
                        </div>
2 years ago
is there anybody out there ?
2 years ago
Hi,
try to put

<div class="product-name">
   <h1 itemprop="name">            @Model.Name          </h1>
   </div>

into <div class="product-essential">
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.