Search…

X3 Photo Gallery Support Forums

Search…
 
illunis
Experienced
Topic Author
Posts: 84
Joined: 14 May 2012, 07:24

Painted black....

16 Dec 2014, 03:01

...or gray :)

How can i change the default White color?

Thaaaaaanks :)
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14007
Joined: 30 Sep 2006, 03:37

Re: Painted black....

16 Dec 2014, 03:43

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;
}
 
illunis
Experienced
Topic Author
Posts: 84
Joined: 14 May 2012, 07:24

Re: Painted black....

16 Dec 2014, 03:48

yes..i agree....for starters i just want to change the background color....:)
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14007
Joined: 30 Sep 2006, 03:37

Re: Painted black....

16 Dec 2014, 11:15

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;
}
 
illunis
Experienced
Topic Author
Posts: 84
Joined: 14 May 2012, 07:24

Re: Painted black....

16 Dec 2014, 12:40

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 :)
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14007
Joined: 30 Sep 2006, 03:37

Re: Painted black....

16 Dec 2014, 13:39

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.