Your syntax is not quite right.
a:link, #navBreadCrumb a:link {
color: #d5b9e1;
a:visited, #navBreadCrumb a:visited {
color: #d5b9e1;
This is a good resource: http://www.w3schools.com/css/default.asp
Your syntax is not quite right.
a:link, #navBreadCrumb a:link {
color: #d5b9e1;
a:visited, #navBreadCrumb a:visited {
color: #d5b9e1;
This is a good resource: http://www.w3schools.com/css/default.asp
So, if I only want to change the colors in the Bread Crumb bar, it would be
#navBreadCrumb a:link {
color: #d5b9e1;
#navBreadCrumb a:visited {
color: #d5b9e1;
? Or is what you gave me the correct code for changing only that part?
Thanks so much!
You are correct.