Archived topic
Add labels to Menu items moved up
5 replies · Started by ahmad on April 1, 2023
Hello I would like to add a label to a menu
I have successfully created it but it just appears next to the menu item
but I would like it to be indented upwards like the image below
https://pasteboard.co/UM79X9msPQYy.png

Hi there,
can you share a link to your site so I can see the label ?
sure thing here is it
As you have the CSS already written then update to include a position: relative and a negative top value ie.
.blog-menu-label a > span {
margin-left: 0.5em;
padding: 3px;
background-color: #FF0000;
border-radius: 3px;
font-size: 9px;
color: white;
position: relative;
top: -15px;
}
Thanks David that solved it
You're welcome