Hello,
To change the size of the logo please add the below given CSS to
Dashboard -> Appearance -> Customize -> Additional CSS
.custom-logo-link {
max-width: 150px;
}
Change the value of the max-width accordingly.
Also on the increment of the logo width by CSS the menu may disrupt so I’ll provide you with another code that will help you align the menu. Also add this css code on the same place.
.main-navigation ul li {
padding: 60px 15px;
}
.right-head {
padding: 60px 0;
}
Here, the 60px
is the main factor of the menu alignment, change the value from 60 to any other to meet your requirement.
Hope it helps.
Regards.