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
A user wants to add an underline hover animation to their Dawn theme header navigation, similar to an example site they referenced.
Solution Provided:
base.css file:after) with width transitions to create the animationOutstanding Issue:
Note: The conversation includes screenshots showing the code editor interface and where to paste the CSS snippet.
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.