I am facing an issue with a CSS file designed to theme a page in white on black, as opposed to the usual black on white.
body {
background-color: black;
}
h1 h2 h3 h4 h5 h6 p {
color: white;
}
However, the color: white;
property is not being applied to text elements on my webpage. You can see an example of this at https://jsfiddle.net/3abz7831/
Attempts made to resolve the issue:
The client has access to all necessary files.
Applying the color directly to individual element styles works but is not ideal.
Repositioning the style sheet within the <head>
tag or moving it to the body section has had no effect.