Custom code integrations are not supported through the normal support channels. The Tovuti Support team does not correct, implement, or modify any custom code, including any code referenced in the Help Center. For assistance with custom code, please contact your Account Manager or contact the Tovuti Client Success team at clientsuccess@tovutiteam.com.
The Tovuti Certificate Designer includes a variety of in-app customization options. Administrators may also use custom code to uniquely modify the certificate to match the use case.
This article outlines just some of the unique modifications as well as the code snippets that Admins may apply to certificates. These modifications include:
Hide Elements
Any of the customizable elements in the Details tab can be hidden using custom CSS.
For example, the icon overlay on the seal of the certificate can be hidden.
Default:
Each element is represented by a nav item. To remove the icon overlay element, use the nav item code:
.cert-badge-icon
Combine the nav item code with the following “hide” code and enter it into the CSS Styling field in the Custom CSS tab:
.cert-badge-icon { display: none; };
Certificate with removed element:
Move Elements
Custom CSS can be used to move fields to exact positions on the certificate. This supports Admins who need to perfectly match 3rd party accreditation elements.
For example, the sponsor logo can be moved.
Default:
Each element is represented by a nav item. To move the sponsor logo element, use the nav item code:
.cert-logo-image
Combine the nav item code with the following “move” code and enter it into the CSS Styling window of the Custom CSS tab:
.cert-logo-image {
position: absolute;
top: 0;
right: 0;
}
Use the desired values for top and right, and include bottom and left values to customize the item position.
Certificate with the moved element: