Member Card background color

Welcome to our Community
Wanting to join the rest of our members? Feel free to Sign Up today.
Sign up

Calavaro

IT questions? I got your back. PM me.
First 100
Jan 18, 2015
330
405
A quick fix to the member card coloring (when you click on a user or user avatar in post):

Original (can't read the content at all):
.xenOverlay.memberCard {
color: #FFF;
background: rgba(21, 21, 21, 0.8) none repeat scroll 0% 0%;
padding: 10px;
border-radius: 10px;
overflow: hidden;
max-width: 565px;
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.8);
}

Modified (see bolded part):
.xenOverlay.memberCard {
color: #FFF;
background: #ccc none repeat scroll 0% 0%;
padding: 10px;
border-radius: 10px;
overflow: hidden;
max-width: 565px;
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.8);
}

Much better that way.
 
D

Deleted member 1

Guest
Ha, you just saved half an hour of my time. My hard head was stuck planning to edit the text instead of just making the background fit the existing layout. Thanks!
I had to uncouple some default stuff (all kinds of unrelated items under the same CSS) and the member card was the tragedy in me getting some other things going.
 

Calavaro

IT questions? I got your back. PM me.
First 100
Jan 18, 2015
330
405
Ha, you just saved half an hour of my time. My hard head was stuck planning to edit the text instead of just making the background fit the existing layout. Thanks!
I had to uncouple some default stuff (all kinds of unrelated items under the same CSS) and the member card was the tragedy in me getting some other things going.
If you get stuck and/or need CSS help, let me know and I'll lend a hand.