• I want to add a mouse over click feature to a custom header graphic on my theme. It is a custom theme, but I cannot see where or how to add the code for a mouse over/on click send to new link feature.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello,
    What i understood,you want to know where to add your script in your site.
    Use functions.php file inside your theme template add this :
    function add_this_script_footer(){
    [YOUR JS CODE HERE]
    }

    add_action(‘wp_footer’, ‘add_this_script_footer’);

    Regards,
    Sarmistha

Viewing 1 replies (of 1 total)
  • The topic ‘Adding a hyperlink to a custom headr graphic’ is closed to new replies.