Loading animation problem | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Loading animation problem

Okay, so for my link I want to change it to white and I put in css color: white I also added text-decoration to none but the underlined thing is still there https://code.sololearn.com/W1CFg858CW3I/?ref=app

23rd Jan 2022, 3:10 AM
Junior
Junior - avatar
1 Answer
+ 2
Make a new CSS rule to be apllied only to the hyperlink, such rule you currently have applies to the <nav> but not hyperlinks inside <nav>. nav a { color: #fff; text-decoration: none }
23rd Jan 2022, 3:18 AM
Ipang