Hello everybody, I am working on my first webpage in along time and am trying to learn css and php as I go. I am embarrased to ask this question but I have tried and tried and can’t seem to get my font-size tag to adjust the size of my font in the body. I have included my stylesheet. Hopefully somebody can help me out with this! Thanks in advance.
body {
font-size: 20pt;
color: #0000FF;
background: #E0FFFF;
}
a:link {
color: #9933FF;
text-decoration: none;
}
a:visited {
color: #660066;
text-decoration: none;
}
a:hover {
color: red;
text-decoration: none;
}
a:active {
color: red;
text-decoration: none;
}
#navbar {
margin: 0;
padding: 0;
display: inline;
float: center;
width: 100%;
}
#navbar li {
background: #0000FF;
display: inline;
margin: 0;
padding: 0;
}
#navbar a:link,
#navbar a:visited {
color: white;
background: #0000FF;
text-decoration: none;
text-align: center;
font-weight: bold;
float: center;
width: 130;
padding: 0px 20px 0px 20px;
}
#navbar a:hover,
#navbar a:active {
color: #0000FF;
text-decoration: none;
text-align: center;
font-weight: bold;
background: #E0FFFF;
float: center;
width: 130;
padding: 0px 20px 0px 20px;
}