Hi, Could you please help. I would like to use a logo in the header that is larger than the current setting.
Size ideally would be twice as large in depth and length.
Can I alter the style.css file to achieve this? and will it rescale and be responsive?
Hi,
Please see this topic https://kriesi.at/support/topic/how-i-make-my-logo-bigger#post-140656
You just need to adjust
Regards,
Yigit
Awesome thank you that works a treat.
Question: How do I reduce the padding in (mobile view only) in the header?
Many thanks Vicki
Hi Vicki,
Do you only want to have a bigger header on bigger screens and not on mobile devices?
Regards,
Yigit
Yes that would be perfect :)
Hi,
Please add following code in front of CSS code you added to make header bigger
@media only screen and (min-width: 784px) { your header code goes here }
Example
@media only screen and (min-width: 784px) { .container { display: none; } }
Regards,
Yigit
Thank you another awesome response and fix. You rock :)