SNHPS
Quick and easy code snippets
no-p-margin.html

Three simple HTML/CSS classes that can be used to remove p tag margins.

<div class="no-last-p-margin">
	<p>Lorem ipsum</p>
	<p>Lorem ipsum</p>
	<p>Lorem ipsum</p>
</div>

<style>
p.no-p-margin,
.no-p-margin p,
p.no-first-p-margin:first-of-type,
.no-first-p-margin p:first-of-type
p.no-last-p-margin:last-of-type,
.no-last-p-margin p:last-of-type
{
	margin: 0;
}
</style>
hide-recaptcha-badge.html

Hide Google's floating reCAPTCHA badge.

<style>
.grecaptcha-badge
{
	display: none!important;
}
</style>

This website is owned and operated by SiteBolts. All the code snippets found here are intended to be a starting point and should not be treated as a perfect solution to every problem. We do not guarantee the performance, reliability, or security of the code found on this website. As always, you should ensure that you have adequate backups before adding, changing, or executing any code.