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.
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
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
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