tags around elements entered into the code editor. This is fine until it causes issues. There are a number of other workarounds- but this one is very unique and may be just the snippet you’re looking for. CSS Option:
p:empty {
display: none;
}
jQuery Version:
$(document).ready(function() {
$('p:empty').remove();
});