function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Lauren BLauren B 

Increase company logo size in Community Template Using CSS.

I cannot figure out how to change the size of the logo. It is tiny on my page and I need to make it bigger. Is there a specific CSS command to edit size of the logo?
Best Answer chosen by Lauren B
AbhishekAbhishek (Salesforce Developers) 
Your query is answered here,

https://salesforce.stackexchange.com/questions/162973/increase-logo-size-in-napili-community-template-using-css

Try it.

I hope you find the above information is helpful. If it does, please mark as Best Answer to help others too.

Thanks.

All Answers

AbhishekAbhishek (Salesforce Developers) 
Your query is answered here,

https://salesforce.stackexchange.com/questions/162973/increase-logo-size-in-napili-community-template-using-css

Try it.

I hope you find the above information is helpful. If it does, please mark as Best Answer to help others too.

Thanks.
This was selected as the best answer
Lauren BLauren B
I tried this CSS but no success. Can you help me with the exact CSS. Thank you.
AbhishekAbhishek (Salesforce Developers) 
.<style>
    .unite-header .logo img, .unite-header .logo .wsite-logo
    {
        max-height: 100px !important;
    }
    .unite-header .logo
    {
        max-height: 110px !important;
    }
    .unite-header
    {
        height: 150px !important;
    }
</style>


But you have to make changes based on your requirement.