Page 1 of 1
					
				Bellabuffs Problem
				Posted: Fri Sep 09, 2016 5:37 pm
				by isavarg
				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 
			
					
				Re: Bellabuffs Problem
				Posted: Fri Sep 09, 2016 5:56 pm
				by Masao
				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 {...}
Code: Select all
body {
background: #040827;
color: #372F83;
}
This is due to the cascading nature of CSS, and some selectors taking precedence over others.
 
			
					
				Re: Bellabuffs Problem
				Posted: Wed Sep 14, 2016 4:12 pm
				by isavarg
				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.