Hello,
I would like to add a small graphic in the socket area currently reserved for secondary menu in the far right and copyright info in the far left. Is there an easy way to add a small “made in the usa” badge in the socket area without worrying about update overwriting/breaking it later? What’s the easiest way to place the image?
Thanks so much – love Enfold!!! Best theme and support on TF!
Mark
Hi Mark!
If you are using a child theme you can copy over the footer.php to the child theme and then modify these lines in that file:
<span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>
<?php
echo "<nav class='sub_menu_socket' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">";
$avia_theme_location = 'avia3';
$avia_menu_class = $avia_theme_location . '-menu';
$args = array(
'theme_location'=>$avia_theme_location,
'menu_id' =>$avia_menu_class,
'container_class' =>$avia_menu_class,
'fallback_cb' => '',
'depth'=>1
);
wp_nav_menu($args);
echo "</nav>";
?>
Cheers!
Devin