Site logo

Archived topic

Icon to show new content in menu

1 reply · Started by Sean on November 22, 2019

Viewing posts 1–2 of 2

Hello,

I am wondering if it is possible to set an icon to show which of the sections of my site have new content in my primary menu/navigation bar. The example I have is this site https://www.bucketlistly.blog/ which as you can see shows a red icon next to sections in Destinations and Photos that have new content. Is this something that is possible with GP or would I need a third party plug-in?

Hi there,

the Label field for the Menu item supports HTML.
So you're label could look like this:

Photos<div class="dot-new"></div>

Then some CSS to make it look like the dot:

.dot-new {
    width: 6px;
    position: relative;
    top: -2px;
    height: 6px;
    margin-left: 5px;
    background: #ff4f55;
    display: inline-block;
    border-radius: 20px;
}
This archived topic is closed to new replies.