The text should be the same blue that I have on other pages of the site, but the text on the members page shows up as black. I think it's probably a script problem because the rest of the site is alright.
http://kobayashi-maru.dead-winters-nigh ... embers.php
			
			
									
						
							Bellabuffs Problem
Re: Bellabuffs Problem
It's actually your CSS, not the script. If you move your text color from #content {...} to your body {...} it'll apply on the table. Alternatively you can specifically set the colors for table {...}
This is due to the cascading nature of CSS, and some selectors taking precedence over others.
			
			
									
						
							Code: Select all
body {
background: #040827;
color: #372F83;
}THE FATE OF DESTRUCTION IS ALSO THE JOY OF REBIRTH.
			
						Re: Bellabuffs Problem
Thanks. I'll try it. It wouldn't bother me too much on a lighter coloured background, but you can hardly see it on there.