Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #582062

    Hi there,

    Is it possible to have 4 columns followed by a single full-width row below the 4 columns in the Footer?

    Thanks!

    #582864

    Hey Saffron,

    Please try the following in your child theme’s function.php:

    function add_custom_footer_code() {
    	?>
    	<div class="container">Your content here</div>
    	<?php
    }
    add_action('avia_after_footer_columns', 'add_custom_footer_code');

    Best regards,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.