Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
I went for clean design with white background.
The X mark to close the navigation tray is however always white so placing it on a white background makes it disappear
Offline
Hi Michael,
I think you can change the color of that button under UI Styling in the template designer.
It has an option for Button Background-color and I think that's where I changed mine.
Best,
Ariaan
Offline
Or you mean the smaller X inside the tray? I don't think there's a styling element in Backlight that covers this.
But I was fiddling a bit in the source code and was able to change it.
Take a look at this section:
<div class="page__ui">
<label for="page__toggle__T1" class="close-button page__tray__close" role="button"><span>
<span></span>
<span></span>
</span></label>
</div>
In the section with the double spans:
<span></span>
<span></span>
...the second instance has a background color that you can change. Try changing that color in the page source in your browser. You can probably target it with custom CSS too.
Best,
Ariaan
Offline
definitely use custom css. This looks like it should work:
.close-button > span span {
background-color: #000000;
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Pages: 1