I have 9 social icons and they overlap my logo on the mobile version.
Is there any way to prevent this besides removing the logo?
Thx in advance.
Hi fgrippe!
Thank you for using the theme.
Please post the website URL here. We would like to check it. I’m sure we can fix it via CSS.
Cheers!
Ismael
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 767px) {
.responsive.html_header_top #header_main .social_bookmarks {
top: 7px;
}
.responsive .logo a, .responsive .logo img {
max-width: 95%;
height: auto !important;
margin-top: 5px!important;
}}
Best regards,
Yigit
Hey!
Try with this code:
@media only screen and (max-width: 767px) {
.responsive.html_header_top #header_main .social_bookmarks {
display:block !important;
width: 100%;
top: 0px;
left: 0px;
}
div#header_meta {
display: none;
}
div#header_main {
padding-top: 20px;
}
}
Cheers!
Josue