for some reason the note is overriding the background color. I have the same code on other pages with the same note and it works just fine. Any ideas on why this is happening?
<!----Global Applications--->
body {
font: 100% "Modern No. 20", "Arial Black", Georgia, serif;
background-color: #000;
color: #FFFFFF;
padding: 0 0 0 0;
margin: 0 0 0 0;
}
a:link {
text-decoration: none;
/* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
color: #0242A4;
text-decoration: line-through;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
text-decoration: line-through;
color: #09BDE0;
}
<!----Global Applications--->
body {
font: 100% "Modern No. 20", "Arial Black", Georgia, serif;
background-color: #000;
color: #FFFFFF;
padding: 0 0 0 0;
margin: 0 0 0 0;
}
a:link {
text-decoration: none;
/* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
color: #0242A4;
text-decoration: line-through;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
text-decoration: line-through;
color: #09BDE0;
}