MyBB Community Forums

Full Version: transparent container
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to make this red arrow container transparent

i tried to edit the container in glopal css
but it changed the background container to transparent blue arrow

[Image: JrzL5sb.png]

body {
	background: #000000;
	color: #969696;
	text-align: center;
	line-height: 1.4;
	margin: 0;
	font-family: Source Sans Pro;
	font-size: 14px;
	font-style: normal;
	overflow-y: scroll;
    text-shadow: 1px 1px 0px #0d0d0d;
}

.stpc {
	background: #181818;
   -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    -webkit-box-shadow: inset 0 0 1px 1px #262626;
    -moz-box-shadow: inset 0 0 1px 1px #262626;
     box-shadow: inset 0 0 1px 1px #262626;
     border: #101010 1px solid;
}

a:link {
	color: #359C9C;
	text-decoration: none;
}

a:visited {
	color: #359C9C;
	text-decoration: none;
}

a:hover,
a:active {
	color: #4d5965;
	text-decoration: none;
    -webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#container {
        background: rgba(0,0,0,0.5);
	text-align: left;
	line-height: 1.4;
	margin: 0;
  	margin-top: -450px;
	color: #969696;
	font-family: Source Sans Pro;
	font-size: 14px;
	font-style: normal;
     text-shadow: 1px 1px 0px #0d0d0d;
}

http://thegame-zone.com/
Edit it with .wrapper { in global.css
can you explain more
go in global.css

find .wrapper

find in .wrapper option
background: <option>;

(in place of <option> there will be some code)

and change it with
background: transparent;
thank you it worked