Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

need to make the logo parameters bigger on the top of my website WordPress

  • SOLVED

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

Answers (2)

2014-05-01

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 */
}

2014-05-01

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.