I’m trying to get rid of the pesky space that exists currently between my lines. I have them separated by different headings for editing reasons (bold, regular, color). How do I remove this space?
See below
<h3><span style="font-size: 14px;">XXXXXXXXX</span></h3>
<h4><span style="font-size: 14px;">XXXXXXXXXXXXXXX<a href="mailto:XXXXXXXXXXXXXX">XXXXXXXXXXXXX/a> </span></h4>
Use CSS
Ideally, you would define the CSS in a separate file
For further control you can add class names (so it doesn’t apply to all h3s) and chose padding/margin sides
Add this CSS selector for
h3
andh4
tags:Example