Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
392 views
in Themes by
edited by

Hello, we are using "On-Site Notifications" plugin in our site, but the notification numbers are showing inside the User Navigation box, when the profile picture is clicked. Instead of the header. 

We want the notification numbers to be showed in the header. Please help!

1 Answer

0 votes
by

Try this:

.qam-account-items-wrapper #osnbox {
    padding-top: 43px;
    margin-left: -5px;
}

#osnbox {
    position: absolute;
}

.ntfy-event-new, .ntfy-event-nill {
    background-color: #FF0808;
    color: #fff; 
    border: none;
    border-radius: 7px;
}

.ntfy-read, .ntfy-event-nill {
    background: #C5C5C5;
    border: none;
    color: #555;
}

...