Can you please advise me on how to add a row of specific social media buttons (and YouTube button) to the footer, as well as a second menu that displays horizontal? I’ve figured out most of what I needed to do, but there are just a few items that are alluding me.
I also need to add the code for “Google Translate” drop-down select menu” into the header. Do I just edit the header.php page?
Thank you so much!
Hi fshn2day!
If you want another menu on the footer area you can go to Appearance > Menus panel. Find Menu Settings then enable Enfold Footer Menu. To add social icons, edit footer.php, find this code:
wp_nav_menu($args);
echo "</div>";
Below, add this code:
$social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
echo avia_social_media_icons($social_args);
Add this on your custom.css or Quick CSS to move the social icons:
#socket .social_bookmarks {
position: relative;
left: 50px;
}
Yes, you can edit header.php to add the Google Translate.
Best regards,
Ismael
Hi Ismael,
I figured out how to edit the footer.php page and got the layout I needed (I’m trying to match a wireframe), but the only thing I don’t yet know how to do, is to get the Create Account/Login links to work. I could hard code them in the footer file, I guess, but thought I’d ask you if there was some other way.
Please see the footer: http://otsecure.net/techserv/
I have the text in the proper location, but the text is not linked. Do you have any suggestions or best practices for this?
Thank you again! ;-)
Hello!
You can just add the link http://otsecure.net/techserv/wp-login.php. You can also create a page then add this code:
Change the “http://yourdomain.com” to your site’s url. You can then use this page’s link as login/logout page.
Cheers!
Ismael