APM Advanced Customization Examples with Modern Template, v15.1+
Introduction
This guide will walk through how the logon, webtop, and other UI pages are created by APM, how it works, and some examples.The new APM modern template has an updated look in both mobil...
Updated Feb 09, 2022
Version 2.0Lucas_Thompson
Employee
Joined January 29, 2020
krazzy522
Mar 01, 2023Altocumulus
Dear PSilva
I have added div to JS file like below and added CSS to the div
thank you for your time and support
var divlogo = document.createElement("div");
divLogo.id = "logo";
document.body.appendChild(divLogo);
var img = document.createElement("img");
img.setAttribute("src", "logo.png");
divLogo.appendChild(img);