Thu, 2011-06-30 08:53
Hi
On my website I'm usin' a background image and I want to overlay an radial gradient with transperancy.
I've tried for hours to transform my css code that it works in Safari(-webkit-) and Opera(-o-) --> Problem is the transperancy.
My css code:
background:-moz-radial-gradient( center 45deg, circle farthest-corner, rgba(255, 255, 255, 0.1) 0%, rgba(190, 190, 190, 0.3) 100%), url("../images/background/background_image.jpg");
Could please anybody show my how this code should look like that it works in ie, Safari, and Opera?
Thanks
Sun, 2011-07-03 03:10
#1
Hi Gali2000 It might be that
Hi Gali2000
It might be that the browsers dont support RGBA, so you may have to try using Opacity eg.
background-color: rgb(0,0,255); opacity: 0.5;
Im not sure if this will work but give it a try.
