Hello,
When you add an image, click on the “Text” tab (instead of “Visual”) in the editor and wrap your image with a small inline CSS code like this:
<img src="IMAGE-URL" style="border: 2px solid #000000;" alt="Product Image" />
Alternatively, when inserting the image:
- Click on the image in the Visual editor.
- Click the Edit (pencil icon).
- In the Advanced Options, you can add a CSS Class, like border-image.
- Then you can add this custom CSS to your site:
.border-image {
border: 2px solid #000000 !important;
}
Best Regards,