Dashboard Background Color Issue with CSS Code

Hello Team Helical,
I am using Helical Insight Application 3.0 version, When am trying to apply background color for my dashboard using CSS code it is not working, Could you please help me in applying background color for my dashboard. Below is the CSS code am using for applying the background color as red.
#dashboard
{
background-color: red !important;
}

In the above code #dashobard is component ID


Thank You.

1 Like

Hello Shwetant,
Please use “body” tag instead of using the component ID in the CSS code then the background color will get applied. Below is the CSS code and the screenshots for your understanding.

body
{
background-color: red !important;
}

Thank You
From Team Helical

1 Like