I slept? can you believe that? Finishing up updates.
In the meantime to make up for the time delay, here is some custom CSS / JS for your HighLevel :)
Change your GHL Favicon:
Input the following script into GHL's custom JavaScript section under Agency Settings -> Company. Host the image in your image library, then copy the link and paste it in the script.
<script>
var faviconURL = 'Insert URL here'
var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = faviconURL
document.getElementsByTagName('head')[0].appendChild(link);
</script>
Change your menu to a gradient:
Input the following script into GHL's custom CSS section under Agency Settings -> Company. Play around with the Hex Codes for your ideal gradient. Here is an awesome website I like to use: https://uigradients.com/ .transition-slowest .flex-col > .overflow-hidden{
background-color:#28527f;
background-image:linear-gradient(116deg, #fc5c7d85 0%, #6a82fb85 100%);
}