i want to add this css animation to navigation menu header . any idea on how to go about this ?https://www.youtube.com/watch?v=0drG9YtoMig
i am using brooklyn theme
https://7kingdomsbar.myshopify.com/
password godgod24
Hi @7kingodmsla ,
You can follow the instruction below:
- Go to Online Store->Theme->Edit code
- Asset->/theme.scss->paste below code at the bottom of the file:
@media (min-width: 750px) {
a.site-nav__link:hover {
text-decoration: none !important;
}
a.site-nav__link:after {
content: "";
position: absolute;
height: 2px !important;
width: 0;
background: #fff;
transition: all .3s;
bottom: 12px;
left: 15px;
}
a.site-nav__link:hover:after {
width: calc(100% - 30px);
}
.site-nav--has-dropdown .site-nav__link:hover:after,
.header-sticky .site-nav__link:hover:after {
background: #000;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
1 Like