cancel
Showing results for 
Search instead for 
Did you mean: 

Unable to Change Background Colour of BLue Crystal Theme in Design Studio 1.6

former_member202257
Contributor
0 Kudos

Hello,

I went through the blog https://blogs.sap.com/2015/06/23/why-use-blue-crystal-style-in-design-studio-apps/ wherein it was suggested to use the below lines to change bg colour :

body {

background-image: initial!important;

background-color: white!important;

}

This does not seem to be working for me. Any idea where I could be going wrong?

TammyPowlas
Active Contributor
0 Kudos

Hi Shwetha,

Have you removed the image in the CSS - looks like Karol is using this:

body {

background: white !important;

}

Where have you placed the CSS?

former_member202257
Contributor
0 Kudos

I used a panel container and changed the color to white and it works 🙂

Accepted Solutions (1)

Accepted Solutions (1)

former_member265529
Contributor

Hi Shwetha,

Please use the below code it works for me.

body

{

background-image: none!important;

background-color: white!important;

}

use "none" instead of "initial" in the code given by karol.

Thanks,

Poovarasan

Answers (0)