MyBB Community Forums

Full Version: My Tabs
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So I am trying to make the background transparent by modifying trow 2 and it works but it affects the forums below like this:

[Image: 1HXaz.jpg]

As you can see some forums become transparent too.
Here is the code I use:
.trow2 {
	background: url("http://i.imgur.com/nmYY46k.jpg");
	background-repeat: no-repeat;
    background-attachment: fixed;
	background-image: -moz-linear-gradient(center top , #222222, #212121);
	border-bottom: 1px solid #0a0a0a;
	border-top: 1px solid rgba(255, 255, 255, 0.11);
	
	
	color: #efefef;
}

Any ideas on how to fix this issue?
Forums use trow1 and trow2, if you modify trow1 or 2, forums will be affected.

If you want to make transparent the upper rectangle, you need to search the html and change the trow2 class for a new class.
Nevermind,I solved the issue.