Page 1 of 1

Notification on topbar

Posted: 18 Oct 2022, 08:16
by rider
Hi,

How can I add a notification clock like at "Morpheus template" for Verona?
Can you help here?

Thanks

Re: Notification on topbar

Posted: 25 Oct 2022, 08:39
by cagatay.civici
Can you post a screenshot of the example?

Re: Notification on topbar

Posted: 25 Oct 2022, 08:47
by rider
same as some other templates already:
Image
privat chat ohne anmeldung

Re: Notification on topbar

Posted: 31 Oct 2022, 11:25
by mert.sincan
Please change topbar.xhtml like;

Code: Select all

<div class="topbar">
        <div class="topbar-main flex align-items-center">   // Added flex classes
            <a href="#" id="menu-button">
                <span class="pi pi-bars"></span>
            </a>
            <h:link outcome="/dashboard">
                <p:graphicImage name="images/logo-main.png" library="verona-layout" styleClass="logo"/>
            </h:link>
            <div class="app-name">
                <h:link outcome="/dashboard" value="VERONA"/>
            </div>

            <a href="#" class="inline-flex align-items-center justify-content-center ml-auto mr-3" style="color: #daecef"> // Added this line
                <i class="pi pi-bell text-4xl" />
            </a>
            
            <a href="#" id="user-display">
                <span class="username">Samanta Owens</span>
                <span class="userrole">Admin</span>
                <p:graphicImage name="images/avatar.png" library="verona-layout" />
            </a>
            
            <ul id="topbar-menu" class="fadeInDown animated">
                ...
            </ul>
        </div>

Re: Notification on topbar

Posted: 31 Oct 2022, 11:27
by rider
Great, I will check that.
Thank you.

Re: Notification on topbar

Posted: 02 Nov 2022, 16:45
by mert.sincan
You're welcome!