Img Login to resize

i need resize img app logo and remove( login to words from page)anyidea?

But where? Can you share a screenshot?

iwant to remove this word (login to ) and resize pic becuse its small so much

can u help me plz

You can use Website Script for resizing the logo, then add javascript to change the style using document.getElement

.steps plzz or give me code

Can u help me?

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:

3 Likes

thnx for help iwish all the best for u