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.
within the template designer, for the masthead (displayed as header) i chose background color, and pasted in the code for a semi-transparent background rgba(255, 255, 255, 0.07). the actual displayed background is white, not semitransparent. this is unlike the same code i used for the main tray, which is semitransparent.
is there a different way i should do this?
Last edited by johnbrks (2016-05-08 15:04:24)
Offline
That color-picker does not support transparency, though it probably could. I'll need to make that change in an update. In the meantime, if crucial to your design, you can effect that change using custom CSS.
.masthead {
background-color: rgba(255, 255, 255, 0.07);
}
Custom CSS goes into a file in /backlight/custom/css. You can edit the sample file, or create a new one. Then apply that file to your page template in the Advanced Customization section of the designer.
Offline