Hi,
Can I please get some assistance.
Looking at the attached image..
I'm trying to add a seperator line between above the product information section, as indicated by the 2 arrows, same as what us directly under the product name.
Thanks,
Mike
Hi,
Can I please get some assistance.
Looking at the attached image..
I'm trying to add a seperator line between above the product information section, as indicated by the 2 arrows, same as what us directly under the product name.
Thanks,
Mike
Since you have a custom template, we'll probably need a link to the site.
You might check the source code of that page for <hr/> to see if that's what's creating the first line. If so, then add it where you want it in the template file. (Might be a border, though.)
It's on my test site / Local Server..
But it is a version of this site http://demo.12leaves.com/zen-cart-te...&products_id=8
Maybe its done from within the stylesheet ?
I checked the source info for that page and no reference to either hr/ or border.! And nothing in the tpl_product_info_display either..
I'll have to do a bit more digging..
Fixed..!! (it was in the style sheet.)
Was this
.productDescription
{
font-size: 13px !important;
padding: 0.2em;
}
Changed it to this...
.productDescription
{
font-size: 13px !important;
padding: 0.2em;
border-top-width: 0.5px;
border-top-style: solid;
border-top-color: #d5d5d5;
}
All good..!