MyBB Community Forums

Full Version: Make the container transparent
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I searched over the net and i dont seem to find how that works.
Please dont aswer with "You need to edit the CSS!
I KNOW THAT! I just dont know what to add where....

I wanna have it just about envira made it, black and transparent:
http://community.mybb.com/thread-95677.html

Great thanks in advance!!
Its rgb colors bro .

Simple yet kool, all u need is edit css

For color the default css is
{
background : #xxxxxx;
}

They are called hex colors Smile

U need to change it to

{
background : rgba(0,0,0,0.2);
}

They are called Rgb colors,a mix of red blue green .

U can play with them according to ur need .
I just gave an example (0,0,0,0.2)
Like wise u can make more darker by changing the latter .
I mean like this (0,0,0,0.8)

This brings out the transparency. Wink

Hope i was helpful.

U can also get transparency via photoshop by adding a transparent background.
THANK YOU!! Big Grin
Made my day.

My pleasure to help Smile
Wen u are good enough in coding help the newbies same,so they in turn help others and help our mybb community grow . Smile

I am busy with my books and so i couldnt release any if my works.
I will release them wen ever i am free Smile
My pleasure to help Smile
Wen u are good enough in coding help the newbies same,so they in turn help others and help our mybb community grow . Smile

I am busy with my books and so i couldnt release any if my works.
I will release them wen ever i am free Smile
My pleasure to help Smile
Wen u are good enough in coding help the newbies same,so they in turn help others and help our mybb community grow . Smile

I am busy with my books and so i couldnt release any if my works.
I will release them wen ever i am free Smile
I came across another transparency problem;
i want to make the "trow" transparent.
Do i need to add a transparent background? and if so how is that done?
Or can i just do it via CSS?
i tried:
.trow1 {
	background: rgba(0,0,0,0.7);
}

.trow2 {
	background: rgba(0,0,0,0.5);
}

But it wont work...
Thanks in advance!
(2011-06-09, 11:29 PM)maniacmusic Wrote: [ -> ]I came across another transparency problem;
i want to make the "trow" transparent.
Do i need to add a transparent background? and if so how is that done?
Or can i just do it via CSS?
i tried:
.trow1 {
	background: rgba(0,0,0,0.7);
}

.trow2 {
	background: rgba(0,0,0,0.5);
}

But it wont work...
Thanks in advance!

May I ask what's not working about it?
Quote:May I ask what's not working about it?

The trow isnt transparent its some solid kind of brown - not what i want.
Its due to the double layer effect of the container that is present in bottom,and te trow on top layer.

Its common.
If u want transparent,them add a photoshop transparent image. Smile
ok just so i get this right....

does it needs look like this?

}

.trow1 {
	background: url(images/mynecraft/trow1.png) top left repeat-x;
}

.trow2 {
	background: url(images/mynecraft/trow2.png) top left repeat-x;
}

the transparent pictures trow1.png and trow2.png can be 1x1px or what?

Thanks in advance
Btb all i need from u is not reps but ur forum missed my copyright,please retain ir.and mynecraft premium is based on such colors so i have revealed its secrets, anyway if u like to donate to us,u are welcome Smile
Pages: 1 2