IBM Apptio

Apptio

A place for Apptio product users to learn, connect, share and grow together.


#Aspera
#Apptio
#Automation
#FinOps
#Apptio
#ITAutomation
 View Only
  • 1.  HTML Background Color

    Posted 11/24/15 02:15 PM

    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> 





    #CostingStandard(CT-Foundation)


  • 2.  Re: HTML Background Color
    Best Answer

    Posted 11/24/15 02:22 PM

    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>


    #CostingStandard(CT-Foundation)