Bellabuffs Problem

Everything related to the visual and coding aspects of websites.
Post Reply
isavarg
Posts: 23
Joined: Mon Apr 04, 2016 10:04 am
Contact:

Bellabuffs Problem

Post 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
Masao
Host
Posts: 579
Joined: Thu Jun 16, 2011 12:29 am
Contact:

Re: Bellabuffs Problem

Post 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.
THE FATE OF DESTRUCTION IS ALSO THE JOY OF REBIRTH.
isavarg
Posts: 23
Joined: Mon Apr 04, 2016 10:04 am
Contact:

Re: Bellabuffs Problem

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