Images

Jeffrey Davis
Modified on: Wed, 19 Feb, 2020 at 11:36 AM

By default, images don't have any borders:

<p>
  <img src="lotus.jpg" />
</p>


But if you want they can be framed (default functionality in the article editor):

<p>
  <img class="fr-bordered" src="lotus.jpg" />
</p>


Or they can have shadow:

<p>
  <img class="image-with-shadow" src="lotus.jpg" />
</p>


Or they can even have overlay:

<p class="image-overlay">
  <img src="lotus.jpg" />
</p>


Border-radius

Image Lightbox

It's possible to open a larger version of the image in the lightbox:


<p>
  <a class="image-with-lightbox" href="lotus.jpg">
    <img src="lotus.jpg" width="400" />
  </a>
</p>


Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.