Hello,
The ID doesn’t work.
Please help.
Thank you in advance.
Apply the text-decoration: none
to the link itself.
I’d suggest to create a new class and assign those links you want to remove text decoration to that new class. Then apply the text-decoration: none
to that class.
It works , thank you.
}
.menu-hébergement
{
color: #0065FC;
text-decoration: none;
margin-right: 70px;
}
.menu-activités
{
color: black;
text-decoration: none;
margin-right: 70px;
}
.menu-inscription
{
color: #0065FC;
text-decoration: none;
}
type or paste code here
Good, now if you don’t want to type text-decoration: none;
for every link, you should give your links a common class name and apply text-decoration: none;
to that class.