Hello!
one Quick Question.
Is there an Option to show the Text on a Page in the Main Copy Centered, without creating a custom css?
Hello!
one Quick Question.
Is there an Option to show the Text on a Page in the Main Copy Centered, without creating a custom css?
You don’t need custom css, you can do it with inline styling.
You’ll need to write your text in html and wrap it in a div that contains the styling:
<div style="text-align:center;">
<p>Here's a paragraph of text.....</p>
<p>Here's yet another paragraph of text.....</p>
</div>
But if you plan on having multiple pages with centered text, it would be more efficient to create a custom class in a custom css file and then apply it where needed:
<div class="my-custom-class">
.....your html......
</div>```
Thank you!