In the
admin/view/template/common/header.tpl
you have this Line:
Code: Select all
<a href="<?php echo $home; ?>" class="navbar-brand"><img src="view/image/logo.png" alt="<?php echo $heading_title; ?>" title="<?php echo $heading_title; ?>" /></a></div>
and, as you see,
no IMAGE Size Values exist, to eventually shrink/enlarge another image,
in order to to place it, like the DEFAULT Logo has been placed, when the header has been designed to work,
to match the Default Image size of:
121px width ×
23px height !
You therefore have two choices, one, to create YOUR image in EXACTLY the
same HEIGHT-Size, at least,
as used in the DEFAULT Admin Logo, or then, ADD the Size Values of your Image/Logo, by adding
width="XXX" height="xx"
to that Line, shown above, to look, at the end of that Line, like:
title="<?php echo $heading_title; ?>" width="XXX" height="xx" /></a></div>
where
X + x would reflect the real image size width+height Values, by nature of things!
BUT still, if you create an image larger in
HEIGHT, it may enlarge your Top header Section, or even hide parts of the Logo, or overwrite/overlap other sections, as seemengly in your case, and so makes it look bad. Then, you have the
option, to eventually adjust the
PADDING Values, in the
stylesheet.css and
bootstrap.css File, and the
height Value as well, in the
bootstrap.css, to make it look and match best.
Those two sections do contain such, I assume:
Stylesheet.css
Code: Select all
#header #button-menu + .navbar-brand {
padding: 10px 10px 10px 10px;
margin-right: 10px;
height: auto;
}
Bootstrap.css
Code: Select all
.navbar-brand {
float: left;
padding: 16.5px 15px;
font-size: 15px;
line-height: 17px;
height: 50px; }
The Code is taken from an OC 2.3 Version Software, it's all untested, since I don't have such installed.
So, don't ask me anymore questions on this, I could not check!
Good Luck
Ernie
PS: Strictly technically, you could FORCE the image, according to it's hardcoded Settings, you defined,
to fit any value, but it could make your image look not so good!