Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #394758

    I would like to use my current 4 columns for social media and then use a horizontal line to separate that from keywords and/or tags.

    any help is appreciated greatly.

    #395279

    Hey mark!

    I see the social media in your footer but I don’t see the tags. Can you take a screenshot and highlight what your wanting to do?

    If your trying to create a separate section in the footer then you can add your content above line 62 in /enfold/footer.php.

    </div>
    

    Best regards,
    Elliott

    • This reply was modified 10 years, 4 months ago by Elliott.
    #400968

    Hi Elliot,

    Thanks for responding. I am sorry it has taken me so long to reply, I was down hard with the Flu.

    This is how are footer currently looks.. we just added to each of the 4 columns:

    http://www.albertburney.com/screenShot_1.png

    We would like to be able to make it look like this:

    http://www.albertburney.com/screenShot_2.png

    Thanks for any help.
    Mark

    #401651

    Hey!

    I see. Try adding this to the bottom of your functions.php file.

    add_action( 'avia_after_footer_columns', 'enfold_customization_extra_footer' );
    function enfold_customization_extra_footer() {
    ?>
    
    <hr />
    <div class="flex_column av_one_fourth  first el_before_av_one_fourth">
    1st column content
    </div>	
    <div class="flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth ">
    2nd column content
    </div>
    <div class="flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth ">
    3rd column content
    </div>
    <div class="flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth ">
    4th column content
    </div>
    
    <?php
    }

    Regards,
    Elliott

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