https://www.palemoon.org/menustyle.css needs work
Posted: 2016-05-14, 20:43
Please fix the body definition in menustyle.css from
body {
background-color: #FFFFFF;
}
to
body {
background-color: #FFFFFF;
color: #000000;
}
The current definition makes pages unreadable for those of us who default to a black background with white text.
The general rule is, "If you set one color, you must set ALL colors."
body {
background-color: #FFFFFF;
}
to
body {
background-color: #FFFFFF;
color: #000000;
}
The current definition makes pages unreadable for those of us who default to a black background with white text.
The general rule is, "If you set one color, you must set ALL colors."