Site logo

Archived topic

Container around Paragraph or multiple paragraph together?

3 replies · Started by Mahesh on November 8, 2019

Viewing posts 1–4 of 4

Hi there,

you would need to use the text ( not visual ) editor and add some HTML like so:

<div class="custom-container">
    <p>some content</p>
    <p>some content</p>
    <p>some content</p>
</div>

Then you can style it with CSS:

.custom-container {
    background-color: #ddd;
    padding: 10px;
    box-sizing: border-box;
}

Thanks. It works.

You're welcome

This archived topic is closed to new replies.