Answered
hover
Hi,
For hover, I wrote below.
i {
font-size: 15px;
margin-right: 3px;
color: dimgray;
}
i:hover {
color: white;
}
But the color of the icon doesn't change to white.
Is there any way to make it happen?
Hosun Kang

Hi,
For hover, I wrote below.
i {
font-size: 15px;
margin-right: 3px;
color: dimgray;
}
i:hover {
color: white;
}
But the color of the icon doesn't change to white.
Is there any way to make it happen?
Hosun Kang

You will need to get more 'specific'.
Instead of:
i:hover {
color: white;
}
Use:
ul li a:hover i {
color: white;
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.