Skip to main content

I see the logo size is hardcoded and specified. Is there a way to make it more flexible size-wise, particularly the height (i.e. manage the size of the logo on the setting)? My logo currently is squeezed, and it's not the same size as the logo on the main site

Donovan Owens

Did you ever get an answer to this or figure it out? I'd also like to change the logo size.

Bandela

Donovan OwensΒ hi, never got the answer

Ceez Vision

Yeah I had that issue as well. Wish the allowed the logo to be whatever size you'd like it to be

Thomas Oates

Couldn't you add something like the following to the custom CSS box?

.fcom_top_menu .fhr_logo a img {
max-height: 60px !important;
height: 60px !important;
}

J V

I changed my logo size with a snippet. Check out the documentation on add css or try adding it a custom css in the settings.

.fcom_top_menu .fhr_logo a img {
max-height: 3.5em !important;

}

Bandela

J VΒ - I will try your suggestion above. Thank you