Duplicate  Replacing logo with your own

Mosh

New member
When you create your own style or use the default style and try using your own header logo whose height is greater that 35px (regardless of the headerLogoHeight setting) then it will shrink it to 35px (and the width proportionally) .

To fix it in the header.css template find:
HTML:
        #logo img
        {
            vertical-align: middle;
            height: 35px;
        }

Change it to:
HTML:
        #logo img
        {
             vertical-align: middle;
             height: @headerLogoHeight;
        }

That will fix it.
 
Top Bottom