Forum Discussion

krazzy522's avatar
krazzy522
Icon for Altocumulus rankAltocumulus
Feb 02, 2023
Solved

Decision box design using js

dear all I am trying to update decision box design using JS file, I have done it in login page by following this link login design and I am thing to update same in other pages  define(["require", ...
  • krazzy522's avatar
    krazzy522
    Feb 28, 2023

    I have inserted div in 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);