Remove underline from link, HTML CSS

Solved
Poneyz Posted messages 2 Status Membre -  
Poneyz Posted messages 2 Status Membre -
Hello,
I can't seem to remove the line under the links T_T

 <header> <div id="haut"> <a href="./pages/p_honey.html" >p_honeyl</a> <a href="./pages/epona.html" >epona</a> <a href="./pages/agro.html" >agro</a> <a href="./pages/ponyta.html" >ponyta</a> </div> </header> 


 #haut { font-family: 'Alegreya', Helvetica, Arial, sans-serif; font-weight: bold; text-decoration: none; } header { text-align: center; } 


Thank you for your help.

2 réponses

animostab Posted messages 3003 Registration date   Status Membre Last intervention   738
 
Hi
#haut a, #haut a:hover { text-decoration:none; } 


A small thank you is better than great ignorance!
So if your issue is resolved, a response with thanks is welcome.
4