Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
fsfs
Experienced
Posts: 56
Joined: 24 Apr 2012, 07:28

Re: X3 Beta V0.9

27 Feb 2015, 11:54

mjau-mjau wrote:For your startpage, you are using "menu-absolute" I assume? Try change it to menu-absolute-90 or menu-absolute-80, which adds a semi-transparent background to the topbar.

That's no ideal, don't want any background. I'd like to change the color of the text only for the startpage.
startpage.JPG
startpage.JPG (1.18 KiB) Viewed 13633 times
 
User avatar
mjau-mjau
X3 Wizard
Topic Author
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: X3 Beta V0.9

28 Feb 2015, 10:09

The semi-transparent menu background option, was specifically created for those few cases where it is not plausible to use white text because of very light photos. It is possible to hack this option through CSS, but it is not very pretty or practical. It was already a complicated syntax for us to create the menu overlay effect that differentiates on the startpage. Try adding this to your custom css:
Code
[class*='menu-absolute'][class*='topbar'] .nav-wrapper:not(.topbar-sticky-pos) ul.menu>li>a {
  color: #333;
}
 
winph
Experienced
Posts: 236
Joined: 19 Jul 2008, 05:07

Re: X3 Beta V0.9

16 Mar 2015, 19:54

how do i change border color for gallery and in folder?
 
User avatar
mjau-mjau
X3 Wizard
Topic Author
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: X3 Beta V0.9

17 Mar 2015, 00:48

winph wrote:how do i change border color for gallery and in folder?
This is generally part of the SKIN, and not an option, but you can easily change it with custom CSS from the panel -> custom/css/:
Code
.frame figure {
  border: 6px solid #fff !important;
}
Just change the #fff color to something else ...