Removing Space Between Paragraphs

On this page:

I need to be able to remove the space between the title and the person’s name without the heading levels merging into the heading level of the title.

On this page I used non breaking spaces to achieve what I needed to make the bullets flush with their headings:

How can I remove the space and maintain the correct formatting?

Hi @spencey,

There are default margins that are set to the heading elements and the paragraphs.

A way to get rid of those margins is to make use of some of class helpers available with X.

To use these class helpers, you can these classes to the heading elements of the page.

For example, you can see above that there is a top margin above the name that is using the <h4> tag so you can edit it from:

<h4 style="text-align: center;">
    <strong>Jeffrey Atkin, MBA, MIS, CPHIMS, CNMT, CIIP<br></strong>
</h4>

to

<h4 class="mtn" style="text-align: center;">
    <strong>Jeffrey Atkin, MBA, MIS, CPHIMS, CNMT, CIIP<br></strong>
</h4>

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.