Line break at end of text causing centering to be wrong

Fixed it. The issue was the paragraph tag:

<p>

needed formatting to remove default margins and properly center text. Adding this fixed issue:

 .Objective p {
        margin: 0; /* Remove default paragraph margins to center text properly */
    }

Left post in case someone else has same issue

1 Like