Untitled-27 Back to Project

Getting Started Untitled-27

Customisation Untitled-27

Troubleshooting Untitled-27

Security Untitled-27

Users & roles Untitled-27

Working with Client Portal Untitled-27

Integrations Untitled-27

Legacy Documentation Untitled-27

How do I customise the project status modules?

Follow the steps below if you want to customise the text in the project status section:

1
Switch the "General Information" editor to the "Text" mode, and paste the below snippet at the end of the content.

2
Change the {TEXT} and {PHASE} in the content accordingly.

Paste this snippet into your General Information editor:

<div class="project-status vertical-padding completed-no">
  <div class="inner-width">
    <div class="column current">
      <span class="value">{TEXT}</span>
      <span class="label">{PHASE}</span>
    </div>
    <div class="column next">
      <span class="value">{TEXT}</span>
      <span class="label">{PHASE}</span>
    </div>
    <div class="column completion-date">
      <span class="value">{TEXT}</span>
      <span class="label">{PHASE}</span>
    </div>
  </div>
</div>