MyBB Community Forums

Full Version: Transparent effect - Square theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I want to make a transparent effect like this https://i.gyazo.com/710a8ce76af946798c1b...92baab.png. As you can see it has a transparent effect, I thought opacity css code would do the trick but doesn't seem to work for me, so how exactly can I do that?
The magic CSS rule should be the rgba background style. Wink
Eg:
background: rgba(0,0,0,0.5);
for black background color with 50% opacity
(2015-10-24, 04:43 PM)SvePu Wrote: [ -> ]The magic CSS rule should be the rgba background style. Wink
Eg:
background: rgba(0,0,0,0.5);
for black background color with 50% opacity

Already tried that, doesn't seem to work, result is like this -> https://i.gyazo.com/efa5d1d43aace34767ba...1c53e5.png
That looks like a 50% opacity of black color over a white background => resulted gray. Wink
(2015-10-24, 05:28 PM)SvePu Wrote: [ -> ]That looks like a 50% opacity of black color over a white background => resulted gray. Wink

the background of .thead was #000000.. so black, how come it is white?
Could you provide your forum URL please?
(2015-10-24, 06:24 PM)SvePu Wrote: [ -> ]Could you provide your forum URL please?

sent u a pm
OK thx... set in theme global.css the background for class "tborder" to transparent and then you can set the background opacity for ".thead", ".tcat", ".tfoot" as you like.

[attachment=35430]
(2015-10-24, 06:44 PM)SvePu Wrote: [ -> ]OK thx... set in theme global.css the background for class "tborder" to transparent and then you can set the background opacity for ".thead", ".tcat", ".tfoot" as you like.

damn.. it's working thanks a lot Smile
You're welcome Wink