Forum Moderators: not2easy
I understand that this can be done by setting the font size for the body tag (and/or html tag). I have done this, but it's not working. When I change the font size in the body tag, the font size does not change. I don't understand why, because when I change the font color in the body tag, the color changes as expected. Why won't the font size change? Am I missing something here?
body {
font-family: verdana,helvetica,arial,sans-serif;
color: #000;
font-size: 14px;
background-color: #1E3351;
}
html, body {
font-size: 7px;
font-family: verdana, helvetica, arial, sans-serif;
color: white;
background-color: #1E3351;
}
I tried changing the text color to make sure that the CSS file is being read. The text color changes, so it is reading the file. This doesn't make any sense and is frustrating me.