GHL Logo CSS Hack

GHL Logo CSS Hack

ISSUE:

The agency Logo in GHL is used in both the dashboard, and in client welcome emails. Client welcome email templates are not yet editable. If you are using a dark theme in GHL you may be using a light/white logo. This logo would be invisible or difficult to see in the welcome emails.

THE FIX

.agency-logo-container {
    background-image: url(https://logo-you-want-to-use-in-dashboard-only.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.agency-logo {
opacity: 0;
}

Replace the background-image url with the url of the image you want to use.

Now the logo setting in GHL will be used for everything else except the dashboard.

Related Articles