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
Is there a good source of blurred images?
I like the effect on Math's private site
Offline
You can blur your own images in Photoshop by using the Gaussian blur
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
All I've done on my site is use a background-image, than applied semi-transparent white to my content background-color using PHPlugins (for custom CSS) and RGBA color values.
Offline
Nice and easy
How do I add transparency to the copyright and social bar sections?
(I see these are not transparent on your site)
Offline
Actually, they are. But they're 75% translucent on top of the body background, which is also 75% translucent. So through the layering, most of the transparency is completely lost. This is the styling:
#body-core,
#social-networking-block .mantle,
#footer .mantle {
background-color: #ffffff;
background-color: rgba( 255, 255, 255, 0.75 );
}
Offline
thx. I see the point lost transparency through multiple layers.
Would it be possible to have different transparency in the footer (copyright and social bar)?
Offline
Just set the background colors separately. Keep in mind, though, that those items are layered on top of whatever you're doing to #body-core. So, for example, if I wanted everything to appear the same, rather than piling up my colors, I could do this:
#body-core {
background-color: #ffffff;
background-color: rgba( 255, 255, 255, 0.75 );
}
#social-networking-block .mantle,
#footer .mantle {
background-color: transparent;
}
Offline
EXACTLY what I was looking to achieve - thanks
Offline
Pages: 1