Documentation

For Background Images and pattern

You can use an image in the background with parallax effect by simply adding InlineStyle in div tag and by use of this you can create your own background. See example below:

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

If your background is small and you want to use repeated background then use styling property background-repeat and set the value repeat or no-repeat. See the example below:

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

f you want to use your background like cover or cointainer. You just need to 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>;
<div style="background-image:url(Path); background-position:center;">
    [YOUR CONTENT]
</div>