Adding Email Form To Footer

How Can add the email form to the footer but above the footer text. I added to each page in its own bottom section but its Taking up to much space i need the section to be closer and tighter not so much black space. And How can I then Make it fullwith? not in a container.

Thanks

Hi @rotation,

Thanks for reaching out.

You’ll have to add this code to your child theme’s functions.php along with your form’s shortcode (replace [your_shortcode_here]).

add_action('x_after_site_end', 'my_global_form', 99999);

function my_global_form() {

echo do_shortcode('[your_shortcode_here]');

}

And you can remove that empty space by disabling the top part of the footer by setting Theme Options > Footer > FOOTER WIDGET AREAS to None.

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.