Skip to main content
The "Need help?" footer is by default in the Visualforce pages that are created when Chatter Answer is enabled. I can't find any VF page where this one is listed as a component. How can this footer be removed from the Chatter Answer standard page?
6 answers
  1. Jul 7, 2014, 12:21 PM
    you can try posting the question in developer forums & stack exchange with your current VF page code to get better response..

     

    but, to give you some direction, it will be something like this..

     

    using standard javascript :

     

    document.getElementById('{!$Component.YourLinkID}').style.display ='none';

     

    or with jQuery, you can use the hide function to hide you page elements..

     

    http://api.jquery.com/hide/
0/9000