– Timeline Notes Headline Styling In the Dynamics 365 Unified Interface, the Timeline control (used for Notes, Activities, Posts, etc.) does not currently expose direct configuration options for rich text formatting or font styling (such as bold or font size changes) within note content. The rendering of timeline items is handled by the standard control, and the text is displayed as plain text. 🧩 Available Options
Custom PCF Control
The most flexible approach is to build a custom PCF control that replaces or extends the default timeline rendering.
You can define custom HTML/CSS for the note body and apply conditional formatting (e.g., bold for the first line).
This allows consistent styling for both existing and new notes.
Custom HTML Web Resource
If full PCF development isn’t desired, you can embed a read-only HTML web resource that displays formatted note content using JavaScript and CSS.
This would require fetching note data via Web API and rendering it manually.
Server-side Formatting Logic
For system-generated notes, you could insert simple markup (like Markdown or HTML tags) into the note text when creating it via automation (Power Automate or plugin).
However, the timeline control will still render it as plain text unless replaced by a custom renderer.
⚙️ Not Possible via Standard Configuration
There is no out-of-the-box setting or form customization that changes font size or boldness in timeline notes.
The Timeline control does not support CSS overrides or formatting rules through the form editor.
💡Recommendation If consistent visual emphasis is important (e.g., for system-generated notes), implementing a lightweight PCF control is the most maintainable and user-friendly solution. It ensures styling consistency without manual intervention.
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.