Background Images

You can use an image in the background with Jarallax effect with simply add InlineStyle in any tag and by use of this you can create your own bg. See example below:

<div style="background-image:url(Path); ">
  [YOUR CONTENT]
</div>

If you want to use your background like cover or cointainer so, you just add styling property background-size and set the value

cover or cointainer. see the example below:

<div style="background-image:url(Path); background-size:cover;">
  [YOUR CONTENT]
</div>
Suggest Edit