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.
you've got html in that file:
</style>
</head>
<body>
that doesn't belong.
What is .transbox? I don't see that class in your html.
you've also got a syntax error by not closing the first rule with a closing } (which is why the rest of the css isn't working)
try this instead:
html,
body,
main {
background: linear-gradient(90deg, #ffffff 50%, #fafafa 50%, #fafafa);
background-color: #000;
background-image: URL(http://ljdservice.com/backlight/designer/?c=page&a=image&p1=2);
background-attachment: fixed;
background-position: center top;
background-repeat: no-repeat;
background-size: cover;
}
/*Background transparent*/
.page__main {
background-color: rgba(255, 255, 255, 0.5);
}
which is essentially what Moritz has above except this has the closing curly brace } after the first rule.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Yeah that did it. Thanks Rod
I thought there was something up with those curly braces, but was too confused to actually read the code properly. lol
Thanks
(caught how to adjust opacity, and will try)
thx
Offline