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 am just starting to rebuild my old CE4 site with Backlight2. Starting with the basics, in Designer I'm building a new default Pangolin page template. In the Color section, all the selections are single colors. I'd like to be able to spec a 2-color gradation for the Base.
Is there any way to do this? Or would it have to be done via an image in the Background section? If the latter, what would be the minimum pixel dimensions for this to work on say, a Retina display?
Thanks,
John
Offline
custom css
/*Background gradient
========================================================*/
body {
background: linear-gradient(180deg, #D18555, #0F0701);
}
background: linear-gradient(angle, first color, second color);
more on css gradients: https://www.w3schools.com/css/css3_gradients.asp
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Thank you Rod!
J
Offline
Oops, sorry I need still more help. Where do I enter this text - is it possible thru the Backlight interface, or ???
John
Offline
Oops, sorry I need still more help. Where do I enter this text - is it possible thru the Backlight interface, or ???
John
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
OK, will check it out.
Thanks again,
John
Offline
I'm still floundering here.
I created a minimal custom css file - basically just what Rod posted, with different hex color values.
Uploaded it to the css folder inside Backlight's directory.
Then from Publisher, edited the page template, enabling Use Custom Stylesheet & selected my .css file.
But no change - looks like the settings in the Color panel still determine the background. What am I missing?
John
Offline
I'm still floundering here.
I created a minimal custom css file - basically just what Rod posted, with different hex color values.
Uploaded it to the css folder inside Backlight's directory.
Then from Publisher, edited the page template, enabling Use Custom Stylesheet & selected my .css file.But no change - looks like the settings in the Color panel still determine the background. What am I missing?
John
Hi John, do you have a link to your page? Thanks!
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
Offline
Please try without space between gradient and '(':
html, body, main {
background: linear-gradient(180deg, #ffffff, #323232);
}
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
Doh!
OK, will try when I get back to studio.
Thank you, Daniel!
J
Offline
As simple as getting rid of that extra space - Thanks!
John
Offline
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
Pages: 1