ThunderTix logo

Support Forum

How can I remove the buttons at the top of the Public View pages? - Mon - Feb 20, 2023 - 3:09pm

  • You can add CSS to your Public display settings to hide elements from the Public view.  Just head to Public display settings >> Web design tools >> Customize CSS.

    Then, under "Custom CSS Styles" enter the CSS code exactly as it appears below. Make sure to click the "Save Draft and Publish" button at the bottom of the page to ensure your changes are saved.


    Hiding the Event Calendar button:

    #event_calendar_link {   display:none; } 

    Hiding the Gift Certificates button:

    #gift_certificates_link {   display:none; } 

    Hiding the Event List button:

    #event_list_link {   display:none; } 

    Hiding the Donate button:

    #fundraising_link {   display:none; } 

    Hiding the Shop button:

    #products_link {   display:none; }