Hi all
i put this shortcode but is not transparent, is gray or black or other solid color
.boxed#top { box-shadow: 0 0 5px 3px #888888; }
or
.boxed#top { box-shadow: 0 0 5px 3px #000000; }
Grey is not well on dark backgrounds. and black looks too crisp.
Is it possible to change the opacity of the shadow? Is it possible to put it in black and change its opacity?
Hey Tokyo!
You can use, istead of the HEX code, an rgba:
example:
rgba ( 0,0,0,0.5)
that will work for what you need to do.
Cheers!
Basilis
Hey Basillis thank you.
Shomthing like this?:
.boxed#top { box-shadow: 0 0 5px 3px rgba ( 0,0,0,0.5); }
sorry im not an expert.
thank you very much
Hey!
Black is not working? Perhaps something lighter like #333 is what your wanting? Can you send us a link to your page so we can take a look?
Best regards,
Elliott
http://www.ganubis.com thanks Elliott
Hi!
Yes the code you posted is correct.
Let us know if you tried it and it is not working, so we can check it out again
Cheers!
Basilis
hi
.boxed#top { box-shadow: 0 0 5px 3px rgba ( 0,0,0,0.5); }
i tried it but it is not working, thanks :)
Hi!
Please try changing the code to following one
.boxed#top {
box-shadow: 0 0 20px 6px #000000;
}
I think it looks good. If you would like to show it differently, please show us an example.
Best regards,
Yigit
finlay look perfect
.boxed#top {
box-shadow: 0 0 20px -6px #000000;
}
Yigit thank you very muuuuuch :) :) :)
thanks to all, for your time.