I used this code to add a badge, it worked well when the menu item does not have sub menus and it is not working now when I added sub menus under the menu item “Trending”.
a[href=“/collections/trending”] {
position: relative;
display: inline-flex;
}
a[href=“/collections/trending”]::before {content: ‘Soon!’;position: absolute;background: blue;transform: translate(-50%, -50%);padding: 1px 5px;color: white;font-size: 12px;left: 50%;top: 0px;}
a[href=“/collections/trending”]::after {content: ‘’;width: 5px;height: 5px;position: absolute;background: blue;transform: translate(-50%, -50%) rotate(45deg);left: 50%;top: 8px;}
any help?