You can create a block with an image on the top and the text of your choice below. I added a nicely hover effect. It's easy and there's 148 colors available for the background.
You have 2 possibilities :
- You can display the block in a module. To obtain that, you must create a new module with the type Custom HTML. Choose the module position of your choice and paste the HTML code inside. If you choose the module position "top", "bottom" or "footer", you must add the Module class suffix "image-text" in Advanced options of your module. It's important to add an empty space on each side.
- You can display the block in an article. To obtain that, edit your article and paste the HTML code inside.
Important : the HTML code and the result are the same.
Responsive feature
- If the width of your screen is larger than 768 pixels (tablets and desktop) the image is on the top and the text below.
- Under 768 pixels, the image and the text are inline.
Procedure
Edit your module or your article and disable the wysiwyg editor. Then, paste the HTML code and change the text and the path of your image.
Note : you can paste several times the code if you want display several images. I recommend you to use the Multli-column feature to obtain several columns.
Example in an article :
Example 01
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Example 03
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
<div class="image-text-below one-half">
<img class="image-text-image" src="images/YOUR-IMAGE.jpg" alt="" />
<div class="image-text-column">
<div>
<h2>Your Title</h2>
<p>Your text here</p>
<p>
<a href="URL OF THE LINK" >Read More</a>
</p>
</div>
</div>
</div>
<div class="image-text-below one-half last">
.... Same code for the second image here ....
</div>
Example 02 with a background color (steelblue and lightgoldenrodyellow) :
Example 01
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Example 01
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Example 03
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
<div class="image-text-below color-steelblue one-third">
<img class="image-text-image" src="images/YOUR-IMAGE.jpg" alt="" />
<div class="image-text-column">
<div>
<h2>Your Title</h2>
<p>Your text here</p>
<p>
<a href="URL OF THE LINK" >Read More</a>
</p>
</div>
</div>
</div>
<div class="image-text-below color-lightgoldenrodyellow one-third">
.... Same code for the second image here ....
</div>
<div class="image-text-below color-steelblue one-third last">
.... Same code for the third image here ....
</div>