Hi there! You should create a child theme and look into extending the footer.php template with a menu. You can learn more about child themes on this Codex entry: http://codex.wordpress.org/Child_Themes
Also note that the actual text in the footer comes from an action. If you’d like to modify the text, look into the expound_display_credits function in the functions.php file. You can easily remove that and add your own with a child theme with remove_action and add_action.
Hope that helps!
There is no such function as expound_display_credits. Do i need to create it ?
Also can be point me about add_action and remove_action ..
Hey there, that function is located in the functions.php file in the wp-content/themes/expound directory.
You can learn more about remove_action here http://codex.wordpress.org/Function_Reference/remove_action and add_action right here: http://codex.wordpress.org/Function_Reference/add_action
Hope that helps!