MyBB Community Forums

Full Version: Transparency
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i make thead, tcat, trow1, etc transparent? Is there a way?

In the picture below im trying to get the areas of senior admins, forums, members, and general transparent, so you can see the image behind.
I guess you'll have to edit the CSS and set the opacity to 0 or something. This is going to make your forum incredibly hard for some people to read though.
Just remove the background, for example:

.thead {
	background: #64accb url(images/sky/thead.png) top left repeat-x;
	color: #ffffff;
	border-bottom: 1px solid #528ea7;
	padding: 8px;
}

Change to:
.thead {
	color: #ffffff;
	border-bottom: 1px solid #528ea7;
	padding: 8px;
}

You'll probably want to remove the borders too, or it will look a bit odd.