Did you try using a bigger logo ? The Theme shouldn’t limit you on the logo size, if you are seeing issues after uploading a bigger logo, let me know and i can take a look
Hi Thanks for the feedback. I´ve tryed to upload different size logos, but it didnt change.
Can you explain on what didn’t change ? There is no logo size limit, if you uploaded a bigger logo and are seeing issues, can you provide me your site URL ? i need to understand the issue to provide you a solution
Hi. Here is the logo with the requested size.
https://www.sendspace.com/file/vnv06q
When i upload it, it appears smaller.
Site: oliveiraalberto.com
Thanks.
I see the logo image you are trying to use, can you provide me your Site URL where i can see this logo, i need to look at the issue so provide me your site URL
My Mistake, i just saw you provided the site URL, i checked your site, the issue is that the width of the logo is too big, which is causing it to shrink.Presuming that your menu is not going to have too many items, we can increase the logo space and reduce the menu space. Create a child theme if you havn’t already and copy the header.php file into the child theme, make the following edit
Find the below line
<div class="site-branding col-md-4">
change it to
<div class="site-branding col-md-6">
Find the below line
<nav id="site-navigation" class="main-navigation col-md-8" role="navigation">
change it to
<nav id="site-navigation" class="main-navigation col-md-6" role="navigation">
After making the above change, remove the CSS change you made
.main-navigation {
margin-top: 100px;
}