Azolda Hi How can I make a logo the same size as FLARUM's? Is it possible to do this only with a script or is it an image? If so, what dimensions should I use?
KBExit 230 x 60 works for me. 268 x 60 works for me too. (Flarum's Official Forum uses this size) It's best to have the logo image at that dimension. Too big, it can make things look less appealing.
Azolda KBExit Thank you, your answer was very helpful! P.S. I used the following dimensions: 268 x 60
Forogramero KBExit I've been trying to make a logo the same size as Flarum's, but the system always shrinks it down. I’ll try those dimensions. I’ve been at this for months because mine keeps looking too small.
Tutrix Forogramero Forogramero but the system always shrinks it down The logo is adjusted to a maximum height of 30px via CSS. .Header-logo { display: block; max-height: 30px; } You can override the size adjustment via CSS.
Tutrix Forogramero For your logo, you can try .Header-logo { max-height:50px !important; margin-top: -8px; }