thank you sooooo much for your help but i am still lost on what you are trying to tell me. not sure if you are aware but i am take a teach-yourself online class and i am a beginner. big time beginner i tried replacing the “thumbnail id” a few dozen times in a variety of ways and nothing worked. I know its something simple; you said i am targeting the wrong element? i dont understand . . sorry
Hey MobiBlue,
You need to first understand about “id” selectors.
The way to select an element with an id “x” is to use #x.
That is, an element is selected by its id using # sign.
Try doing it now.
I have given the answer below but you should try it by yourself first.
#thumbnail{
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
Hope it helps.
When i said x i meant that whenever you want to select something with id use the #(hashtag) sign.
For example: for element with id “dog” use #dog in css.
for element with id “cat” use #cat in css.
In your case in order to get element with “thumbnail” use #thumbnail.
Also give the id “thumbnail” to your div element with class “fullcard” instead of “box-shadow”.
#thumbnail{
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
The above part you have to enter in style tag.
And in your div element change the id name to thumbnail.