One of the menu items on my website displays an orange box when hovered over.
.menu > li > a:hover:after {
position: absolute;
left: 0px;
border-style: solid;
border-color: transparent;
}
However, I am aiming to create a diamond shape below the dropdown box for added style.
I came across a [website][4] that suggested using the diamond:after
method, but my attempt was not quite right. I have indicated in the CSS code what needs to be adjusted. Any assistance would be appreciated.