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.
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.