email:
password:
Remember Me
Forum Trail Main / Profile Customization > [HELP] Transparent Middle Blackness
Pages (2): 1 2 
 
n00blet

Joined: May 23, 2008
Posts: 22
View Post History


Trølløses
After scouring places and such the code I've found is:

#userinfo
{
background-color:transparent;
}

But all it does it make it a light blue. To me, it kinda defeats the purpose of a background if you can't see it.

Jun 2, 2008, 10:09:02PM
Pwnzilla

Joined: Jan 16, 2008
Posts: 6152
View Post History


Hades
After scouring places and such the code I've found is:

#userinfo
{
background-color:transparent;
}

But all it does it make it a light blue. To me, it kinda defeats the purpose of a background if you can't see it.

Try this. Change both the .5 and 50 to the same percentage. 1 and 100 make it a solid color while 0 and 0 make it totally transparent. What is down there makes it 50% transparent. Why do you need both? Because one works only for IE and the Other for Firefox. This covers the two most popular browsers.

#userinfo{
opacity: .5;
filter: alpha(opacity=50);
}

Hades
"Those who say they don't fear Death are either Lying or Insane. Which am I?"
-Hades
God of the UnderWorld as well as the Erratics
Jun 2, 2008, 10:58:37PM
n00blet

Joined: May 23, 2008
Posts: 22
View Post History


Trølløses
It makes everything but the box background transparent.

Jun 3, 2008, 1:16:38AM
Pwnzilla

Joined: Jan 16, 2008
Posts: 6152
View Post History


Hades
I'm assuming that you were trying to get the picture in the background to show through. And it does when I look at it. Am I right here?

Hades
"Those who say they don't fear Death are either Lying or Insane. Which am I?"
-Hades
God of the UnderWorld as well as the Erratics
Jun 3, 2008, 8:09:36AM
n00blet

Joined: May 23, 2008
Posts: 22
View Post History


Trølløses
If you notice in the screenshot I took the middle bar thing is in the way of the wallpaper.

The picture is taken with the code you provided, which is why things look ghostly but the middle thing is still there.



Jun 3, 2008, 2:26:04PM
Pwnzilla

Joined: Jan 16, 2008
Posts: 6152
View Post History


Hades
Try this. I think this is what you are trying to get to. At least I think so.

#userinfo{
background-image:url();
}

Hades
"Those who say they don't fear Death are either Lying or Insane. Which am I?"
-Hades
God of the UnderWorld as well as the Erratics
Jun 3, 2008, 3:23:02PM
n00blet

Joined: May 23, 2008
Posts: 22
View Post History


Trølløses
Nope. I even put in the background color to be transparent.

#userinfo{
background-image:url();
background-color:transparent;
}

It's back to light blue. I'm thinking that you can't get rid of it so I'm just going to give up.

Jun 3, 2008, 5:18:38PM
Pwnzilla

Joined: Jan 16, 2008
Posts: 6152
View Post History


Hades
What browser are you working with? Cause I've got that code to work on my page. Also, there is no 'transparent' value for 'background-color'. Try 'none' there. But to my knowledge that won't get rid of it. I also looked at the code you have there and you have to entries for #userinfo.

#userinfo{
background-image: url('');
color: #306754;
}

and

#userinfo{
background-image:url();
background-color:transparent;
}

Try dropping one and making the other look like this,

#userinfo{
background-image: url();
color: #306754;
background-color:none;
}

Hades
"Those who say they don't fear Death are either Lying or Insane. Which am I?"
-Hades
God of the UnderWorld as well as the Erratics
Jun 4, 2008, 8:00:25AM
n00blet

Joined: May 23, 2008
Posts: 22
View Post History


Trølløses
I use Mozilla SeaMonkey but I also tested it with IE7.

This is the code in my CSS thing:

body
{
background-image:
url('http://img153.imageshack.us/img153/254/pwnedwallpapermk0.jpg');
background-repeat:
no-repeat fixed center;
background-attachment:
fixed
}
#userinfo{
background-image:url();
background-color:transparent;
}

Jun 4, 2008, 2:48:13PM
Pwnzilla

Joined: Jan 16, 2008
Posts: 6152
View Post History


Hades
You try changing the "transparent" to "none" yet? Because that is how I had mine set up.

Hades
"Those who say they don't fear Death are either Lying or Insane. Which am I?"
-Hades
God of the UnderWorld as well as the Erratics
Jun 4, 2008, 3:22:01PM
Quick Reply
 
Pages (2): 1 2 
Forum Trail Main / Profile Customization > [HELP] Transparent Middle Blackness