That worked, mostly! I had to edit the code to include my source page so that it didn’t affect all the other pages. For all those who are reading this and have no idea where the Theme Option CSS should be entered (like me), then here are the instructions:
From the main WordPress dashboard, hover over “Appearance”, click on “Edit CSS”
This brings up the Cornerstone Dashboard. (It should say “Customizing Additional CSS” at the top)
You have the CSS pane on the left, the preview pane of the site on the right.
In preview, using your site menu, click on the page you want to fix.
In the CSS pane, after the commented-out text (mine started on Line 6), put in the code:
p {
margin-bottom: 0;
}
You should see the change immediately in the preview pane.
Click on other pages, in preview, to make sure it hasn’t screwed anything else up (the style affects the whole site)
–Mine affected all pages, so I had to look at the pages source code (go to your website and click on the correct page you want to fix. Push Ctrl+U). Each page has a specific “ID” related to it. Click Ctrl+F and search for article id=. This will tell you the ID of your page. My ID was article id=“post-99”. Therefore I had to edit the code to include this:
#post-99 p {
margin-bottom: 0;
}
Once you see it is fixed, click save and publish.