A place for Apptio product users to learn, connect, share and grow together.
In Apptio, is there a way to add a background color to html boxes? I am attempting to add a colored background to a title box and am having difficulty. I have tried bgcolor and background-color, but since Apptio html has slightly different formatting I have been unsuccessful in figuring this out. My current html code is below. Thanks.
<span style="font-size: 18pt; font-family:'Calibri';color:#1F497D"><b>Description</span>
This snippet should help demo a solution:
<div style="background:#0000FF;width:100%;height:100%;">
<h3 style="color:#FFFFFF">This is a heading</h3>
<p style="color:#FFFFFF">This is a paragraph.</p>
</div>