Re: How to adjust logo size (larger)

#1270
Anonymous
Guest

Related to the issue above: please check the menu in the header @ http://www.farlowlands.com

The orginal theme header has quite some height into it (especially at a 768×1024 px screen)… I therefore made some adjustments in a child theme:

/* VERT ADJUST HEADER */
.sitebar-default {
margin-top: 60px;
position: absolute;
}
.header-custom {
background: none repeat scroll 0 0 #F0F0F0;
min-height: 140px;
width: 100%;
}
.single .header-custom,
.page .header-custom {
max-height:140px;
}
.sitebar-inside {
background: none repeat scroll 0 0 #F5F5F5;
height: 100px;
}

However, when the browser draws the menu, the menu-items are first drwn to low (original height?) and then animated towards the new height.

How can I fix this (i.e. how to edit initial height)?

Thank you in advance!