Page 1 of 1

Painted black....

Posted: 16 Dec 2014, 03:01
by illunis
...or gray :)

How can i change the default White color?

Thaaaaaanks :)

Re: Painted black....

Posted: 16 Dec 2014, 03:43
by mjau-mjau
What default grey color or default white do you mean? There are several variations of grey on a vast amount of elements, and the same goes for white. Not only are many different colors, applied to many different elements, but they are applied across color, border-color and background color styles depending on the element.

If it was only that simple to edit and maintain colors in any advanced website template ...

You can add this into your custom/css/ from the panel:
Code
.someelement {
  color: #FFF;
}

Re: Painted black....

Posted: 16 Dec 2014, 03:48
by illunis
yes..i agree....for starters i just want to change the background color....:)

Re: Painted black....

Posted: 16 Dec 2014, 11:15
by mjau-mjau
illunis wrote:yes..i agree....for starters i just want to change the background color....:)
If you change the background, you will have problems matching other elements. Try the below in your panel custom/css/ to set the background and you will perhaps understand how big job you are undertaking ...
Code
.sb-site-container>div {
  background: #CCC;
}

Re: Painted black....

Posted: 16 Dec 2014, 12:40
by illunis
To be honest i tried this setting but did not change anything.....

nevertheless i understand what you mean and i think i will wait for the Skins to go live that i guess will be a bit easier to customise :)

Re: Painted black....

Posted: 16 Dec 2014, 13:39
by mjau-mjau
Yes, at least you should wait for a dark skin if you want to work with a dark background, so all other elements will look fine by default. We use SASS to programmatically create extensive CSS skins, and that is already a difficult task.