Hi there,
If you want to display cta widgets on all pages please replace this code of header.php file of child theme.
if (!is_404()) {
if ( is_front_page() ) :
get_template_part( 'sidebar', 'cta' );
endif;
}
?>
with
if (!is_404()) {
get_template_part( 'sidebar', 'cta' );
endif;
}
Regarding to buttom column layout issue, we had fixed your issue , please check it once. There it’s seems somewhere you missed out the closing of
, so we had addded
at the end of bottom1 widgets. Now it looks good.
Let us know if you got any problems on this.We will be more than glad to assist you.
Thanks