Hi there,
I have a 'divi' wordpress theme by elegant themes. I 'm doing a website called www.saltandlight.com.au which isn't live yet.
I want to figure out a way to make the logo parameters bigger on the top of my website header. The logo looks tiny and when you scroll down it goes even tinier.
I will provide admin details on request.
Kate
zebra webdesigns answers:
Hello Kate,
I have already replied to your previous question.
If you can send me the credentials I can help you at the earliest.
zebra webdesigns comments:
Hello Kate,
you can increase the logo size by increasing the header min-height and increase the max-height property for the logo
.et_fixed_nav #logo {
max-height: 63px; /*default 43 */
margin-bottom: 0;
}
#main-header {
min-height: 63px; /*default 43 */
}
Navjot Singh answers:
.et-fixed-header #logo {
max-height: 43px !important;
}
.et_fixed_nav #logo {
max-height: 43px;
margin-bottom: 18px !important;
}
.et-fixed-header {
padding: 18px 0 0 0 !important;
min-height: 43px !important;
}
This will keep the logo from getting smaller when it scrolls down. You can increase 43 to a suitable value.