Please apply the style in the Website Settings
<style>
.page-card-head img {
max-height: 100px;
}
</style>
Apply the script to the Website Script
var h4Elements = document.getElementsByTagName("h4");
// Iterate through the <h4> elements and replace the specified content
for (var i = 0; i < h4Elements.length; i++) {
if (h4Elements[i].innerHTML === "Login to Frappe") {
h4Elements[i].innerHTML = "Welcome to ERPNext";
break; // Stop iterating once the replacement is done (optional)
}
}
Output:


