Remove Footer Permanently

Hi, im asking what is the easiest way to get rid of the footer in all website?

This would include all footer with pics , menus etc.

Thank you for help in advance!

Best regards Alex F

Hi! You can do it in two ways.

  1. using this php snippet in your theme, or child theme’s functions.php :
echo '<style>
      .site-footer {
         display: none !important; }
   </style>';
  1. add this css code from the front-end editor “Additional CSS” field:
.site-footer { display: none; }