Custom hyper link text on banner header is broken/missing after upgrade to SanDiego

Knight Rider
Mega Guru

Hello All,

We have added a customized hyper link (Submit incident) to the banner header.
find_real_file.png

As we have upgraded to San Diego release and when we switch to new next experience UI, the custom hyper link (Submit Incident), we had on the banner header is missing.

find_real_file.png

When I change my UI from next Experience to UI16, I was able to see (Submit Incident) hyper link on banner header.
Is there way that we can add this hyperlink to New next experience banner header?

Please let me know, thanks in advance!

 

5 REPLIES 5

Hi Can you Share the Script to anchor HTML element ? I used this below script on Ui script to show on the  banner but it shows on the header menu of the form 

addLoadEvent(function(){
try{
var confidentialMessage = "<img src='bullet.png' width='15' height='15' style='margin-right: 5px;' /><a target='gsft_main' https://www.youtube.com/watch?v=tZdZOCBROw0'id='confidentialMessage' style='margin-right: 20px; font-size: 100%; color: #000;text-decoration: underline;'>Please read the confidentiality clause</a>";
var nav_header = document.getElementsByClassName("navbar-header")[0];
nav_header.insert({before:confidentialMessage});
}catch(e){}
});