Skip to main content

Return to TX Community

Liaison

Using CSS overrides in Portal

DISCLAIMER: This CSS tag is not supported or maintained by TargetX, and is meant as an example of how you may choose to use CSS within our products. Some or all of the customizations these tags provide may change or no longer apply to your instance at any time. If the CSS impedes expected functionality in the TargetX product at any time, our recommendation is for you to remove the CSS to regain functionality.  

  1. Navigate to the TargetX Builder tab.
  2. Select the Portal Builder option.
  3. Locate and select to Edit the Portal where you wish to include CSS overrides.
  4. Select the Layout tab and insert a new Section.
  5. Click the new Section and click on Video under the Add Widget heading.
  6. Click the Embed Code field and enter your CSS override code, beginning and ending with <style>.

For example, if you want to hide the Started On and Due On labels, you would enter the following:

<style>
.started-on
{display:none !important;}
.due-on
{display:none !important;}
</style>

Add this tag to hide the Appointments & Interviews link from the Events widget:

<style>
.portal-block__button.go-to-appointments {
display: none;}
</style>
>
  1. Save and Publish your changes.

 

  • Was this article helpful?