Reply To: Submenu arrows

Home Forums Support Submenu arrows Reply To: Submenu arrows

Home Forums Support Submenu arrows Reply To: Submenu arrows

#104223
Tom
Lead Developer
Lead Developer

Ok here we go – sorry for the delay!

.sf-menu .menu-item-has-children > a:first-child::after, .sf-menu .page-item-has-children > a:first-child::after {
	border: medium none !important;
	display: none !important;
}

.sf-menu .menu-item-submenu > a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -.5em;
	margin-top: -3px;
	height: 0;
	width: 0;
	border: 5px solid transparent;
	border-top-color: inherit;
	margin-top: -5px;
	border-color: transparent;
	border-left-color: inherit; 
}

May need some tweaking, but it’s a start 🙂