Page 5 of 5

Re: X3 Beta V0.9

Posted: 27 Feb 2015, 11:54
by fsfs
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 13642 times

Re: X3 Beta V0.9

Posted: 28 Feb 2015, 10:09
by mjau-mjau
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;
}

Re: X3 Beta V0.9

Posted: 16 Mar 2015, 19:54
by winph
how do i change border color for gallery and in folder?

Re: X3 Beta V0.9

Posted: 17 Mar 2015, 00:48
by mjau-mjau
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 ...