Reply To: Logo and social icons overlap on iOS devices

#3004
Raghavendra
Moderator

Hey – beautiful illustrations. You must be one happy person developing those nice little apps.

Header sizes vary due to different logo sizes and hence we need some minor customizations to fix issues in certain device resolutions. Here is what you can do to fix the issue:

Insert the following Custom CSS into Custom CSS tab in theme options panel or in custom/custom.css file –

@media only screen and (max-width: 767px) {
#site-logo {
margin-bottom: 20px; /* Change this value to suit your needs */
}
}