Hi Patricia,
– The mobile logo height is controlled by the line height of the primary navigation menu item which is 50px in your case.
If you don’t want to increase the line height of the menu item, then we can use this CSS to only change the mobile logo size:
.mobile-header-navigation .site-logo.mobile-header-logo img {
height: 80px;
}
– Do you have GenerateBlocks Pro? If so, you can use the advanced background to re-position the background image for mobile, set the background position to 70% center.
If you don’t have GB pro, then try adding this CSS:
@media(max-width: 768px) {
.gb-container-b8cfbc6e:before {
background-position: 70% center;
}
}