I’ve added specifics for items in each section of my code (text-color, background-color, font-size, etc…) that are not showing up. Cannot figure out what I’ve done wrong here. I’ve tried aligning it to what I’ve done in previous projects. Yet, it still isn’t showing up right.
-
text-color
is not a valid property, it’s justcolor
. -
You have a bunch of invalid selectors, they should be id selectors
#selectorName
and/or class selectors.selectorName
.
1 Like
Thank you so much. I figured it was something simple I had missed. It was the # before all my section titles. I appreciate you pointing that out for me. Sometimes it just takes a second eye to see mistakes made.