Product Categories Page and Description
-
The edit Product Categories screen doesn’t have an editor, so we used HTML Blocks to edit the content of Product Categories which works fine.
e.g. http://website.com/product-category/fencing/
However, there is a problem with the default margin, there should be a margin under the Product Category description, but there isn’t one. I can add margin into the HTML Blocks, but would need to do that to each one, so I’d like to add margin via Css or Php, but not sure where to edit that.
Need to add
{
margin-bottom: 20px;
}
to <div class=”term-description”> but not sure how to do it : ) or better to edit Php?
Hello,
By the link, you provided we receive an error 404, please provide a working link.
https://prnt.sc/gbxlcc
Kind Regards
XTemos Studio
the link was just an example! To show you the url structure! Actual link provided in Private content box! You can see the space between – This is a test of an html block inside a category description. – and the breadcrumb, is not sufficient.
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
.term-description {
margin-bottom: 20px;
}
Kind Regards
XTemos Studio
Brilliant, so easy : ) thank you very much.