MyBB Community Forums

Full Version: Trow1 and Trow2
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys

}

.trow1 {
background: #000;
background-color: rgba(0,0,0,.8);
border-top: #101010 1px solid;
border-bottom: #262626 1px solid;
  color: #969696;
  padding: 10px;
  font-family: Source Sans Pro;
font-size: 14px;
font-style: normal;
}

.trow2 {
background: #000;
background-color: rgba(0,0,0,.8);
border-top: #101010 1px solid;
border-bottom: #262626 1px solid;
  color: #969696;
   padding: 10px;
  font-family: Source Sans Pro;
font-size: 14px;
font-style: normal;
}

I added " background-color: rgba(0,0,0,.8); " to make it transparent but all i get is BLACK ( why is it not transparent ) what did I do wrong ?

www.lgk-clan.com/mybb/

as you can see i cant get them transparent Confused ?

Please help

here is what i want : http://prntscr.com/6ltvr2
background: transparent;

didnt help ... any other way ?
Have you tryed

background: rgba(0,0,0,0.8);

You can't have background and background-color at same time. One of that will not work. It is black because of background: #000; at beginning.

If still don't work, try adding !important to it. Like:

background: rgba(0,0,0,0.8) !important;
for both trow1 and trow2 remove....

background: #000;
background-color: rgba(0,0,0,.8);

and replace it with

background: rgba(0,0,0,.6);


and for .tborder remove...

background: #181818;
background-color: rgba(0,0,0,.8);
(2015-03-27, 05:53 AM)mmadhankumar Wrote: [ -> ]for both trow1 and trow2 remove....


background: #000;
background-color: rgba(0,0,0,.8);

and replace it with


background: rgba(0,0,0,.6);


and for .tborder remove...


background: #181818;
background-color: rgba(0,0,0,.8);

OK , solved. Thanks guys , thanks a lot !!