Where can I add a favicon.ico / website icon?

Hi Community,

webpages often use a shortcut icon / website icon so uses can identify a website more easily.

I noticed an error message in the browser debugger that my Innovator website searches for a favicon.ico. So I assume Innovator can also use a favicon.

But were can I add this one and where to put the link string? Any ideas?

Thanks!

Angela

Parents
  • Hello Angela,

    You need to update below 2 files:

    1. default.aspx:

    Path: Aras->Innovator->Client

    Put below 2 lines in head section 

     <link runat="server" rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
     <link runat="server" rel="icon" href="favicon.ico" type="image/ico"/>

    2. Innovator.aspx

    Path: Aras->Innovator->Client->scripts

    Put below line in head section:

    <link rel="shortcut icon" href="favicon.ico">

    Thanks and regards,

    Suhas

Reply
  • Hello Angela,

    You need to update below 2 files:

    1. default.aspx:

    Path: Aras->Innovator->Client

    Put below 2 lines in head section 

     <link runat="server" rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
     <link runat="server" rel="icon" href="favicon.ico" type="image/ico"/>

    2. Innovator.aspx

    Path: Aras->Innovator->Client->scripts

    Put below line in head section:

    <link rel="shortcut icon" href="favicon.ico">

    Thanks and regards,

    Suhas

Children