Hello! I’d like to add an underline animation on my header like the one on this site.
My site is: https://prestigestraps.com/ ; password: asd321
Hello! I’d like to add an underline animation on my header like the one on this site.
My site is: https://prestigestraps.com/ ; password: asd321
Follow step by step below:
.header__menu-item span{
text-decoration: unset !important;
position: relative;
}
.header__menu-item span:after{
content: '';
height: 2px;
width: 0;
background-color: currentColor;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: width .25s;
transition: width .25s;
}
.header__menu-item:hover span:after{
width: 100%;
}
Can you provide the same animation code for the submenu items ? looks like it doesn’t change the animation of underline on the drop-down menu list.